* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
        }

        /* Top Bar Styles */
        .top-bar {
            background: linear-gradient(135deg, #0090C8 0%, #00AEEF 50%, #33BFFF 100%);
            color: white;
            padding: 10px 0;
            font-size: 14px;
            position: relative;
            overflow: hidden;
        }

        .top-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .top-bar-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .top-bar-left {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .top-bar-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .top-bar-item i {
            color: #F7941D;
            text-shadow: 0 0 10px rgba(247,148,29,0.5);
        }

        .top-bar-right {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .top-social-icon {
            width: 30px;
            height: 30px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 14px;
        }

        .top-social-icon:hover {
            background: linear-gradient(135deg, #F7941D, #E8830A);
            transform: translateY(-2px) rotate(360deg);
            box-shadow: 0 5px 15px rgba(247,148,29,0.5);
        }

        /* Header Styles */
        header {
            background: #fff;
            padding: 18px 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s;
            border-bottom: 1px solid rgba(0,212,212,0.1);
        }

        header:hover {
            box-shadow: 0 6px 25px rgba(0,212,212,0.12);
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            transition: all 0.3s;
            cursor: pointer;
        }

        .logo:hover {
            transform: translateX(3px);
        }

        .logo-icon {
            width: 55px;
            height: 55px;
            background: linear-gradient(135deg, #0090C8 0%, #00AEEF 50%, #33BFFF 100%);
            border-radius: 50% 50% 50% 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 26px;
            box-shadow: 0 4px 15px rgba(0,174,239,0.3), 0 0 30px rgba(247,148,29,0.2);
            transition: all 0.3s;
            position: relative;
        }

        .logo-icon::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: linear-gradient(135deg, #F7941D, #E8830A);
            border-radius: 50% 50% 50% 10px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .logo:hover .logo-icon {
            box-shadow: 0 6px 20px rgba(0,174,239,0.5), 0 0 40px rgba(247,148,29,0.4);
            transform: rotate(5deg) scale(1.05);
        }

        .logo:hover .logo-icon::before {
            opacity: 1;
        }

        .logo-text h1 {
            font-size: 21px;
            color: #2c3e50;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .logo-text h1 span {
            font-weight: 700;
            background: linear-gradient(135deg, #0090C8, #00AEEF, #33BFFF, #F7941D);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease infinite;
            background-size: 200% 200%;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        /* Main Navigation Menu */
        .main-nav {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .nav-link {
            padding: 10px 16px;
            color: #333;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s;
            border-radius: 5px;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #00AEEF, #33BFFF);
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,174,239,0.05), rgba(51,191,255,0.08));
            opacity: 0;
            transition: opacity 0.3s;
            z-index: -1;
        }

        .nav-link:hover {
            color: #00AEEF;
            transform: translateY(-2px);
        }

        .nav-link:hover::before {
            width: 80%;
        }

        .nav-link:hover::after {
            opacity: 1;
        }

        .nav-link.active {
            color: #00AEEF;
        }

        .nav-link.active::before {
            width: 80%;
        }

        /* Dropdown Menu Styles */
        .nav-item-dropdown {
            position: relative;
        }

        .nav-item-dropdown .nav-link i {
            font-size: 10px;
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .nav-item-dropdown:hover .nav-link i {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(-10px);
            background: white;
            min-width: 220px;
            max-width: 280px;
            width: max-content;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 1000;
            padding: 8px;
            margin-top: 10px;
            max-height: 70vh;
            overflow-y: auto;
        }
        
        /* Hizmetlerimiz menüsü için tek sütun, daha minimal */
        .dropdown-menu.services-menu {
            min-width: 240px;
            max-width: 300px;
        }
        
        /* Scrollbar styling for dropdown */
        .dropdown-menu::-webkit-scrollbar {
            width: 6px;
        }
        
        .dropdown-menu::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        
        .dropdown-menu::-webkit-scrollbar-thumb {
            background: #00AEEF;
            border-radius: 10px;
        }
        
        .dropdown-menu::-webkit-scrollbar-thumb:hover {
            background: #0090C8;
        }

        .nav-item-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-item {
            display: block;
            padding: 10px 14px;
            color: #333;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            line-height: 1.4;
            border-radius: 8px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        

        .dropdown-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(135deg, #00AEEF, #33BFFF);
            transform: scaleY(0);
            transition: transform 0.3s;
        }

        .dropdown-item:hover {
            background: linear-gradient(135deg, rgba(0,174,239,0.08), rgba(51,191,255,0.12));
            color: #00AEEF;
            transform: translateX(3px);
        }

        .dropdown-item:hover::before {
            transform: scaleY(1);
        }

        /* Mobile Menu Toggle - Mynet Style (Minimal 3 Lines) */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            width: 32px;
            height: 22px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
            position: relative;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle:hover {
            opacity: 0.7;
        }

        .mobile-menu-toggle span {
            width: 100%;
            height: 2px;
            background: #2c3e50;
            border-radius: 2px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: block;
            position: static;
            margin: 0;
            flex-shrink: 0;
        }

        /* Hamburger to X animation */
        .mobile-menu-toggle.active {
            justify-content: center;
        }

        .mobile-menu-toggle.active span {
            background: #00AEEF;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translateY(0px);
            position: absolute;
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
            transform: scale(0);
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translateY(0px);
            position: absolute;
        }

        /* Mobile Menu Overlay - Enhanced */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-menu-overlay.active {
            display: block;
            opacity: 1;
        }

        /* Mobile Menu - VIP Design */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 420px;
            height: 100%;
            background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
            z-index: 1000;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
        }

        .mobile-menu.active {
            right: 0;
        }

        /* Mobile Menu Header with Logo */
        .mobile-menu-header {
            background: linear-gradient(135deg, #0090C8 0%, #00AEEF 50%, #33BFFF 100%);
            padding: 25px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 4px 20px rgba(0,174,239,0.3);
            position: relative;
            overflow: hidden;
        }

        .mobile-menu-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(247,148,29,0.15) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        .mobile-menu-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
            z-index: 1;
        }

        .mobile-menu-logo-icon {
            width: 45px;
            height: 45px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #00AEEF;
            font-size: 22px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .mobile-menu-logo-text {
            color: white;
        }

        .mobile-menu-logo-text h2 {
            font-size: 16px;
            font-weight: 700;
            margin: 0;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .mobile-menu-logo-text p {
            font-size: 11px;
            margin: 2px 0 0 0;
            opacity: 0.95;
            font-weight: 500;
        }

        .mobile-menu-close {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.2);
            border: 2px solid rgba(255,255,255,0.4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            z-index: 1;
        }

        .mobile-menu-close:hover {
            background: white;
            color: #00AEEF;
            transform: rotate(90deg);
        }

        .mobile-nav {
            padding: 20px 0;
        }

        .mobile-nav-link {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 16px 25px;
            color: #2c3e50;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            border-bottom: 1px solid rgba(0,174,239,0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            cursor: pointer;
            position: relative;
        }

        .mobile-nav-link::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(135deg, #00AEEF, #33BFFF);
            transform: scaleY(0);
            transition: transform 0.3s;
        }

        .mobile-nav-link:hover {
            background: linear-gradient(90deg, rgba(0,174,239,0.08) 0%, transparent 100%);
            color: #00AEEF;
            padding-left: 32px;
        }

        .mobile-nav-link:hover::before {
            transform: scaleY(1);
        }

        .mobile-nav-link i {
            font-size: 20px;
            width: 28px;
            min-width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #00AEEF;
            flex-shrink: 0;
        }

        .mobile-nav-dropdown {
            border-bottom: 1px solid rgba(0,174,239,0.08);
        }

        .mobile-dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }

        .mobile-dropdown-toggle i.fa-chevron-down {
            transition: transform 0.3s;
            font-size: 12px;
            color: #00AEEF;
            margin-left: auto;
        }

        .mobile-dropdown-toggle.active i.fa-chevron-down {
            transform: rotate(180deg);
        }

        .mobile-dropdown-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: linear-gradient(135deg, rgba(0,174,239,0.03) 0%, rgba(51,191,255,0.05) 100%);
        }

        .mobile-dropdown-menu.active {
            max-height: 600px;
        }

        .mobile-dropdown-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 13px 25px 13px 50px;
            color: #555;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
        }

        .mobile-dropdown-item::before {
            content: '→';
            position: absolute;
            left: 30px;
            color: #00AEEF;
            opacity: 0;
            transform: translateX(-5px);
            transition: all 0.3s;
        }

        .mobile-dropdown-item:hover {
            background: rgba(0,174,239,0.08);
            color: #00AEEF;
            padding-left: 55px;
        }

        .mobile-dropdown-item:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        body.mobile-menu-open {
            overflow: hidden;
        }

        /* Mobile Menu Footer */
        .mobile-menu-footer {
            padding: 20px 25px;
            background: linear-gradient(135deg, rgba(0,174,239,0.05) 0%, rgba(51,191,255,0.08) 100%);
            border-top: 2px solid rgba(0,174,239,0.1);
            margin-top: auto;
        }

        .mobile-menu-footer-title {
            font-size: 13px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .mobile-menu-social {
            display: flex;
            gap: 12px;
        }

        .mobile-menu-social-icon {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, #0090C8 0%, #00AEEF 50%, #33BFFF 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0,174,239,0.3);
        }

        .mobile-menu-social-icon:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 6px 20px rgba(0,174,239,0.5);
        }

        .mobile-menu-contact {
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid rgba(0,174,239,0.15);
        }

        .mobile-menu-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            color: #555;
            text-decoration: none;
            font-size: 13px;
            transition: all 0.3s;
        }

        .mobile-menu-contact-item i {
            color: #00AEEF;
            font-size: 14px;
            width: 20px;
        }

        .mobile-menu-contact-item:hover {
            color: #00AEEF;
            padding-left: 5px;
        }

        .videolar-btn {
            background: linear-gradient(135deg, #0090C8 0%, #00AEEF 50%, #33BFFF 100%);
            color: white;
            padding: 10px 24px;
            border: 2px solid #F7941D;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            animation: pulse 2s ease-in-out infinite;
            box-shadow: 0 5px 20px rgba(0,174,239,0.4), 0 0 30px rgba(247,148,29,0.2);
            white-space: nowrap;
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(0, 174, 239, 0.7);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(0, 174, 239, 0);
            }
        }

        .videolar-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .videolar-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .videolar-btn:hover {
            transform: translateY(-2px) scale(1.05);
            animation: none;
            box-shadow: 0 8px 30px rgba(0,174,239,0.6), 0 0 40px rgba(247,148,29,0.4);
            border-color: #E8830A;
        }

        .lang-switcher {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .lang-btn {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.15);
            border: 2px solid rgba(247,148,29,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            padding: 0;
        }

        .lang-btn:hover {
            background: rgba(255,255,255,0.25);
            border-color: rgba(247,148,29,0.6);
            transform: translateY(-2px) scale(1.15);
            box-shadow: 0 5px 15px rgba(247,148,29,0.3);
        }

        .lang-btn.active {
            background: rgba(255,255,255,0.3);
            border-color: #F7941D;
            transform: scale(1.15);
            box-shadow: 0 0 20px rgba(247,148,29,0.5);
        }
        
        /* Language content visibility */
        [data-lang] {
            display: none;
        }
        
        [data-lang].active {
            display: block;
        }

        /* Hide Google Translate Elements */
        #google_translate_element {
            display: none;
        }

        .goog-te-banner-frame.skiptranslate {
            display: none !important;
        }

        body {
            top: 0 !important;
        }

        .goog-logo-link {
            display: none !important;
        }

        .goog-te-gadget {
            color: transparent !important;
        }

        /* Hero Section */
        .hero {
            background: #ffffff;
            padding: 60px 20px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -150px;
            left: -150px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0,174,239,0.08), transparent 70%);
            border-radius: 50%;
            z-index: 0;
            animation: floatCircle1 20s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -200px;
            right: -200px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(51,191,255,0.06), transparent 70%);
            border-radius: 50%;
            z-index: 0;
            animation: floatCircle2 25s ease-in-out infinite;
        }

        @keyframes floatCircle1 {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(50px, -30px) scale(1.1);
            }
            66% {
                transform: translate(-30px, 40px) scale(0.9);
            }
        }

        @keyframes floatCircle2 {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(-40px, 50px) scale(1.15);
            }
            66% {
                transform: translate(60px, -40px) scale(0.85);
            }
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            padding: 20px;
        }

        .hero-tag {
            color: #00AEEF;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .hero-title {
            font-size: 42px;
            color: #2c3e50;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-description {
            font-size: 16px;
            color: #555;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .hero-btn {
            background: linear-gradient(135deg, #0090C8 0%, #00AEEF 50%, #33BFFF 100%);
            color: white;
            padding: 15px 40px;
            border: 2px solid #F7941D;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-block;
            box-shadow: 0 5px 20px rgba(0,174,239,0.4), 0 0 30px rgba(247,148,29,0.2);
            position: relative;
            overflow: hidden;
        }

        .hero-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(247,148,29,0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .hero-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .hero-btn:hover {
            background: linear-gradient(135deg, #007AB0, #0090C8, #00AEEF);
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 8px 30px rgba(0,174,239,0.6), 0 0 40px rgba(247,148,29,0.4);
            border-color: #E8830A;
        }

        .hero-image {
            position: relative;
            text-align: right;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(0,174,239,0.12), rgba(51,191,255,0.08) 50%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
            animation: heroImagePulse 4s ease-in-out infinite;
        }

        @keyframes heroImagePulse {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.7;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.15);
                opacity: 1;
            }
        }

        .hero-image::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, transparent 60%, rgba(0,174,239,0.05) 70%, transparent 80%);
            border-radius: 50%;
            z-index: 0;
            animation: heroImageRing 6s ease-in-out infinite;
        }

        @keyframes heroImageRing {
            0%, 100% {
                transform: translate(-50%, -50%) scale(1) rotate(0deg);
                opacity: 0.5;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.1) rotate(180deg);
                opacity: 0.8;
            }
        }

        .hero-image img {
            max-width: 300px;
            max-height: 350px;
            height: auto;
            object-fit: cover;
            position: relative;
            z-index: 1;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            border: 5px solid rgba(0,174,239,0.2);
            padding: 10px;
            background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(179,229,252,0.1));
            box-shadow:
                0 10px 40px rgba(0,174,239,0.15),
                inset 0 0 20px rgba(255,255,255,0.5);
            transition: all 0.4s ease;
        }

        .hero-image:hover img {
            border-radius: 50%;
            transform: scale(1.05);
            border-color: rgba(247,148,29,0.5);
            box-shadow:
                0 15px 50px rgba(0,174,239,0.25),
                inset 0 0 30px rgba(255,255,255,0.7);
        }

        .slider-dots {
            display: flex;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: #00AEEF;
            width: 30px;
            border-radius: 6px;
        }


        /* Info Boxes Section */
        .info-boxes-section {
            padding: 50px 20px 60px;
            background: #f8f9fa;
        }

        .info-boxes-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        /* 4 kart için grid düzeni */
        .info-boxes-container.count-4 {
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        /* 4 kart için daha kompakt info-box */
        .info-boxes-container.count-4 .info-box {
            padding: 28px 24px;
            min-height: 280px;
        }

        .info-boxes-container.count-4 .info-box h3 {
            font-size: 18px;
            margin-bottom: 12px;
        }

        .info-boxes-container.count-4 .info-box p {
            font-size: 13px;
            margin-bottom: 18px;
        }

        .info-boxes-container.count-4 .info-box-btn {
            font-size: 13px;
            padding: 10px 16px;
        }

        /* 1-2 kart için grid düzeni */
        .info-boxes-container.count-1 {
            grid-template-columns: repeat(1, minmax(0, 500px));
            justify-content: center;
        }

        .info-boxes-container.count-2 {
            grid-template-columns: repeat(2, 1fr);
        }

        .info-box {
            padding: 32px 28px;
            text-align: left;
            transition: all 0.3s ease;
            position: relative;
            border-radius: 16px;
            min-height: 320px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
            border: none;
        }

        /* Kart 1: Mavi — Liv Hospital ana rengi */
        .info-box:nth-child(1) {
            background: linear-gradient(135deg, #E0F7FF 0%, #B3ECFF 60%, #E8F7FC 100%);
            border-left: 4px solid #00AEEF;
            box-shadow: 0 6px 24px rgba(0,174,239,0.12);
        }

        /* Kart 2: Yeşil — taze, sağlık teması */
        .info-box:nth-child(2) {
            background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 60%, #F1F8F1 100%);
            border-left: 4px solid #43A047;
            box-shadow: 0 6px 24px rgba(67,160,71,0.12);
        }

        /* Kart 3: Turuncu — sıcak, enerjik */
        .info-box:nth-child(3) {
            background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 60%, #FFF8F0 100%);
            border-left: 4px solid #F7941D;
            box-shadow: 0 6px 24px rgba(247,148,29,0.12);
        }

        /* Kart 4: Mor/Lavanta — güven, uzmanlık */
        .info-box:nth-child(4) {
            background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 60%, #F8F0FA 100%);
            border-left: 4px solid #8E24AA;
            box-shadow: 0 6px 24px rgba(142,36,170,0.12);
        }

        .info-box::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 180px;
            height: 180px;
            background: rgba(255,255,255,0.5);
            border-radius: 50%;
            pointer-events: none;
        }

        .info-box::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: -40px;
            width: 130px;
            height: 130px;
            background: rgba(255,255,255,0.3);
            border-radius: 50%;
            pointer-events: none;
        }

        .info-box:hover {
            transform: translateY(-6px);
        }

        .info-box:nth-child(1):hover {
            box-shadow: 0 12px 36px rgba(0,174,239,0.22);
        }

        .info-box:nth-child(2):hover {
            box-shadow: 0 12px 36px rgba(67,160,71,0.22);
        }

        .info-box:nth-child(3):hover {
            box-shadow: 0 12px 36px rgba(247,148,29,0.22);
        }

        .info-box:nth-child(4):hover {
            box-shadow: 0 12px 36px rgba(142,36,170,0.22);
        }

        .info-box-content {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .info-box h3 {
            font-size: 22px;
            color: #1a2e3b;
            margin-bottom: 14px;
            font-weight: 700;
            line-height: 1.3;
            position: relative;
            padding-bottom: 14px;
        }

        .info-box:nth-child(1) h3 { color: #005f8a; }
        .info-box:nth-child(2) h3 { color: #2e7d32; }
        .info-box:nth-child(3) h3 { color: #b85e00; }
        .info-box:nth-child(4) h3 { color: #6a1b7a; }

        .info-box h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            border-radius: 2px;
        }

        .info-box:nth-child(1) h3::after { background: #00AEEF; }
        .info-box:nth-child(2) h3::after { background: #43A047; }
        .info-box:nth-child(3) h3::after { background: #F7941D; }
        .info-box:nth-child(4) h3::after { background: #8E24AA; }

        .info-box p {
            font-size: 14px;
            color: #4a5568;
            line-height: 1.75;
            margin-bottom: 24px;
        }

        .info-box-btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            padding: 12px 18px;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            width: 100%;
            box-sizing: border-box;
            line-height: 1.3;
        }

        .info-box:nth-child(1) .info-box-btn {
            background: #00AEEF;
            color: #ffffff;
            border: none;
        }
        .info-box:nth-child(2) .info-box-btn {
            background: #43A047;
            color: #ffffff;
            border: none;
        }
        .info-box:nth-child(3) .info-box-btn {
            background: #F7941D;
            color: #ffffff;
            border: none;
        }
        .info-box:nth-child(4) .info-box-btn {
            background: #8E24AA;
            color: #ffffff;
            border: none;
        }

        .info-box-btn span {
            flex: 1;
        }

        .info-box-btn i {
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .info-box-btn:hover {
            opacity: 0.88;
            transform: none;
        }

        .info-box-btn:hover i {
            transform: translateX(4px);
        }

        /* Social & Contact Section */
        .social-contact {
            background: linear-gradient(135deg, #0090C8 0%, #00AEEF 50%, #33BFFF 100%);
            padding: 40px 20px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .social-contact::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(247,148,29,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .social-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background: white;
            color: #00AEEF;
            transform: translateY(-3px);
        }

        .contact-info h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .phone-number {
            font-size: 28px;
            font-weight: 700;
        }

        /* Services Section */
        .services {
            background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
            padding: 80px 20px;
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 150px;
            background: radial-gradient(circle at 50% 0%, rgba(0,174,239,0.05), transparent 70%);
            pointer-events: none;
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            background: white;
            border-radius: 30px;
            padding: 35px 25px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        /* Öne çıkan hizmet kartı */
        .service-card.featured {
            border-color: rgba(247,148,29,0.4);
            background: linear-gradient(135deg, #FFF9E6 0%, #FFFEF5 50%, #ffffff 100%);
        }
        
        /* Öne çıkan rozeti */
        .service-featured-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: linear-gradient(135deg, #F7941D, #E8830A);
            color: #2c3e50;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(247,148,29,0.4);
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .service-featured-badge i {
            font-size: 12px;
            color: #2c3e50;
        }
        
        /* Hizmet detay linki - minimal ve hover'da görünür */
        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #00AEEF;
            text-decoration: none;
            font-weight: 600;
            font-size: 13px;
            margin-top: 12px;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(5px);
        }
        
        .service-card:hover .service-link {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-link i {
            transition: transform 0.3s;
            font-size: 11px;
        }
        
        .service-link:hover {
            gap: 10px;
        }
        
        .service-link:hover i {
            transform: translateX(3px);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #00AEEF, #33BFFF);
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,174,239,0.15);
            border-color: rgba(0,174,239,0.2);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #0090C8 0%, #00AEEF 50%, #33BFFF 100%);
            border-radius: 50% 50% 50% 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: white;
            margin: 0 auto 20px;
            transition: all 0.4s;
            box-shadow: 0 8px 20px rgba(0,174,239,0.3), 0 0 30px rgba(247,148,29,0.2);
            position: relative;
        }
        
        .service-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50% 50% 50% 10px;
            border: 2px solid rgba(247,148,29,0.4);
            top: -5px;
            left: -5px;
            transition: all 0.4s;
        }

        .service-card:hover .service-icon {
            transform: rotateY(360deg) scale(1.1);
            box-shadow: 0 12px 30px rgba(0,174,239,0.5), 0 0 40px rgba(247,148,29,0.3);
            border-radius: 50%;
        }
        
        .service-card:hover .service-icon::after {
            top: -8px;
            left: -8px;
            border-color: rgba(247,148,29,0.8);
        }

        .service-card h3 {
            font-size: 18px;
            color: #2c3e50;
            margin-bottom: 12px;
            font-weight: 700;
            transition: color 0.3s;
        }

        .service-card:hover h3 {
            color: #00AEEF;
        }

        .service-card p {
            font-size: 14px;
            color: #666;
            line-height: 1.7;
        }

        /* Treatment Areas Section */
        .treatment-areas {
            padding: 80px 20px;
            background: #f8f9fa;
        }

        .treatment-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .treatment-grid {
            display: grid;
            gap: 30px;
            margin-top: 40px;
        }

        .treatment-item {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            display: grid;
            grid-template-columns: 2.5fr 1fr;
            transition: all 0.3s;
            max-height: 150px;
        }

        /* Arka plan renkleri admin panelden inline style olarak gelecek */
        .treatment-content {
            background: #f8f9fa; /* Fallback renk - admin panelde renk yoksa */
        }

        .treatment-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        }

        .treatment-content {
            padding: 25px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .treatment-content h3 {
            font-size: 18px;
            color: #2c3e50;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .treatment-content p {
            font-size: 13px;
            color: #666;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .treatment-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #2c3e50;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s;
        }

        .treatment-btn:hover {
            color: #00AEEF;
        }

        .treatment-btn i {
            transition: all 0.3s;
        }

        .treatment-btn:hover i {
            transform: translateX(5px);
        }

        .treatment-button-area {
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(0,174,239,0.05), rgba(51,191,255,0.1));
            padding: 20px;
        }

        .treatment-online-btn {
            background: linear-gradient(135deg, #00AEEF, #33BFFF);
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            animation: pulse 2s ease-in-out infinite;
            box-shadow: 0 5px 20px rgba(0,174,239,0.4);
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .treatment-online-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0,174,239,0.6);
            animation: none;
        }

        /* Videos Section */
        .videos {
            padding: 80px 20px;
            background: #f8f9fa;
        }

        .videos-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        /* Stil 1: Alt animasyonlu çizgi */
        .section-title.style-1 {
            position: relative;
            padding-top: 10px;
            padding-bottom: 20px;
        }
        
        .section-title.style-1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #00AEEF, #33BFFF);
            border-radius: 2px;
            animation: titleUnderline 2s ease-in-out infinite;
        }
        
        /* Stil 2: Gradient metin + alt animasyonlu çizgi */
        .section-title.style-2 {
            background: linear-gradient(135deg, #00AEEF, #33BFFF, #33BFFF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            letter-spacing: 1px;
            position: relative;
            padding-top: 10px;
            padding-bottom: 20px;
        }
        
        .section-title.style-2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #00AEEF, #33BFFF);
            border-radius: 2px;
            animation: titleUnderline 2s ease-in-out infinite;
        }

        /* Stil 3: Alt animasyonlu çizgi */
        .section-title.style-3 {
            position: relative;
            padding-top: 10px;
            padding-bottom: 20px;
        }
        
        .section-title.style-3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #00AEEF, #33BFFF);
            border-radius: 2px;
            animation: titleUnderline 2s ease-in-out infinite;
        }

        /* Stil 4: Badge tarzı arka plan + alt animasyonlu çizgi */
        .section-title.style-4 {
            background: linear-gradient(135deg, rgba(0,174,239,0.1), rgba(51,191,255,0.15));
            padding: 15px 50px 25px;
            border-radius: 50px;
            display: inline-block;
            position: relative;
            box-shadow: 0 5px 20px rgba(0,174,239,0.1);
        }
        
        .section-title.style-4::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: 10px;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #00AEEF, #33BFFF);
            border-radius: 2px;
            animation: titleUnderline 2s ease-in-out infinite;
        }
        
        /* Stil 5: Alt çizgi animasyonlu */
        .section-title.style-5 {
            position: relative;
            padding-top: 10px;
            padding-bottom: 20px;
        }
        
        .section-title.style-5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #00AEEF, #33BFFF);
            border-radius: 2px;
            animation: titleUnderline 2s ease-in-out infinite;
        }

        /* Stil 6: Alt animasyonlu çizgi */
        .section-title.style-6 {
            position: relative;
            padding-top: 10px;
            padding-bottom: 20px;
        }
        
        .section-title.style-6::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #00AEEF, #33BFFF);
            border-radius: 2px;
            animation: titleUnderline 2s ease-in-out infinite;
        }

        @keyframes titleUnderline {
            0%, 100% {
                width: 100px;
            }
            50% {
                width: 150px;
            }
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 50px;
            font-size: 16px;
        }

        .video-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
        }

        .video-arrow {
            width: 50px;
            height: 50px;
            border: 2px solid #ddd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .video-arrow:hover {
            border-color: #00AEEF;
            color: #00AEEF;
        }

        .video-grid {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
            overflow: hidden;
            position: relative;
        }

        .video-grid-wrapper {
            display: flex;
            gap: 30px;
            animation: scroll-left 15s linear infinite;
        }

        .video-grid-wrapper:hover {
            animation-play-state: paused;
        }

        .video-card {
            background: white;
            border-radius: 20px 20px 40px 20px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            min-width: 380px;
            flex-shrink: 0;
            position: relative;
            border: 2px solid rgba(0,174,239,0.1);
        }

        .video-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,174,239,0.05), rgba(51,191,255,0.1));
            opacity: 0;
            transition: opacity 0.4s;
            z-index: 0;
        }

        .video-card:hover::before {
            opacity: 1;
        }

        .video-card:hover {
            transform: translateY(-10px) rotate(-2deg);
            box-shadow: 0 15px 40px rgba(0,174,239,0.25);
            border-color: rgba(0,174,239,0.4);
        }

        .video-thumbnail {
            position: relative;
            padding-top: 56.25%;
            background: linear-gradient(135deg, #00AEEF, #33BFFF);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .video-thumbnail::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
            z-index: 1;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-left: 5px;
            font-size: 32px;
            color: #00AEEF;
            cursor: pointer;
            z-index: 2;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        .play-button::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 3px solid rgba(255,255,255,0.5);
            animation: playPulse 2s ease-out infinite;
        }

        @keyframes playPulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        .video-card:hover .play-button {
            transform: translate(-50%, -50%) scale(1.1);
            background: #00AEEF;
            color: white;
        }

        .video-duration {
            position: absolute;
            bottom: 15px;
            right: 15px;
            background: rgba(0,0,0,0.85);
            color: white;
            padding: 5px 12px;
            border-radius: 5px;
            font-size: 13px;
            font-weight: 600;
            z-index: 2;
        }

        .video-category {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(135deg, #00AEEF, #33BFFF);
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
            box-shadow: 0 3px 10px rgba(0,174,239,0.4);
        }

        .video-content {
            padding: 20px;
            position: relative;
            z-index: 1;
        }

        .video-content h3 {
            font-size: 16px;
            color: #2c3e50;
            margin-bottom: 12px;
            line-height: 1.5;
            font-weight: 600;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            min-height: 48px;
        }

        .video-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 13px;
            color: #999;
        }

        .video-meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .video-meta-item i {
            color: #00AEEF;
            font-size: 14px;
        }

        .all-videos-btn {
            background: linear-gradient(135deg, #003B5C, #004B6E);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: block;
            margin: 0 auto;
            transition: all 0.3s;
        }

        .all-videos-btn:hover {
            background: linear-gradient(135deg, #002A42, #003B5C);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(106,27,154,0.4);
        }

        /* Info Cards Section */
        .info-cards {
            padding: 80px 20px;
            background: white;
        }

        .info-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .info-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .info-card-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, #e8f9f9, #d0f0f0);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            color: #00a8a8;
        }

        .info-card-content {
            padding: 30px;
        }

        .info-card-title {
            font-size: 24px;
            color: #00AEEF;
            margin-bottom: 15px;
        }

        .info-card-text {
            color: #666;
            line-height: 1.8;
        }

        /* Cookie Notice */
        .cookie-notice {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.2);
            max-width: 400px;
            z-index: 1000;
        }

        .cookie-text {
            margin-bottom: 15px;
            font-size: 14px;
            line-height: 1.6;
        }

        .cookie-text a {
            color: #00AEEF;
            text-decoration: none;
        }

        .cookie-btn {
            background: linear-gradient(135deg, #003B5C, #004B6E);
            color: white;
            padding: 10px 25px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
        }

        /* Fixed Right Side Icons */
        .fixed-social-bar {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .fixed-icon-btn {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 22px;
            color: white;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            text-decoration: none;
        }

        .fixed-icon-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        .btn-phone {
            background: #E8830A;
        }

        .btn-whatsapp {
            background: #25D366;
        }

        .btn-instagram {
            background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #00AEEF, #33BFFF);
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            cursor: pointer;
            z-index: 998;
            box-shadow: 0 4px 15px rgba(0,174,239,0.4);
            transition: all 0.3s;
            border: none;
        }

        .scroll-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0,174,239,0.6);
        }

        .scroll-to-top.show {
            display: flex;
        }

        /* Working Hours Section */
        .working-hours {
            padding: 50px 20px;
            background: linear-gradient(135deg, #003B5C, #002A42);
        }

        .working-hours-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .working-hours .section-title {
            color: white;
            font-size: 28px;
        }

        .working-hours .section-subtitle {
            color: rgba(255,255,255,0.7);
            font-size: 14px;
            margin-bottom: 35px;
        }

        .hours-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 25px;
            margin-top: 35px;
        }

        .hours-card {
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.3s;
        }

        .hours-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.08);
            border-color: rgba(51,191,255,0.3);
        }

        .hours-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .hours-header i {
            font-size: 24px;
            color: #B3E5FC;
        }

        .hours-header h3 {
            font-size: 18px;
            color: white;
            font-weight: 600;
            margin: 0;
        }

        .hours-description {
            color: rgba(255,255,255,0.6);
            font-size: 13px;
            line-height: 1.6;
            margin-bottom: 18px;
        }

        .hours-list {
            margin-bottom: 20px;
        }

        .hours-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 15px;
            margin-bottom: 6px;
            background: rgba(255,255,255,0.03);
            border-radius: 8px;
            border-left: 2px solid #B3E5FC;
            transition: all 0.3s;
        }

        .hours-item:hover {
            background: rgba(255,255,255,0.06);
        }

        .hours-item.closed {
            border-left-color: #e74c3c;
            opacity: 0.6;
        }

        .hours-item .day {
            color: white;
            font-weight: 500;
            font-size: 14px;
        }

        .hours-item .time {
            color: #B3E5FC;
            font-weight: 600;
            font-size: 14px;
        }

        .hours-item.closed .time {
            color: #e74c3c;
        }

        .hours-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #00AEEF, #33BFFF);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s;
        }

        .hours-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,174,239,0.4);
        }

        .hours-btn i {
            font-size: 14px;
        }

        /* Media Section */
        .media-section {
            padding: 80px 20px;
            background: white;
        }

        .media-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .media-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 30px;
        }

        .media-intro p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }

        .section-subtitle-icon {
            color: #e74c3c;
            font-size: 18px;
            margin-right: 8px;
        }

        .section-subtitle-custom {
            text-align: center;
            color: #e74c3c;
            margin-bottom: 10px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .media-grid {
            display: flex;
            gap: 30px;
            margin-top: 40px;
            overflow: hidden;
            position: relative;
        }

        .media-grid-wrapper {
            display: flex;
            gap: 30px;
            animation: scroll-left 20s linear infinite;
        }

        .media-grid-wrapper:hover {
            animation-play-state: paused;
        }

        @keyframes scroll-left {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .media-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s;
            cursor: pointer;
            min-width: 280px;
            flex-shrink: 0;
        }

        .media-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }

        .media-thumbnail {
            position: relative;
            width: 100%;
            height: 160px;
            overflow: hidden;
            background: #f0f0f0;
        }

        .media-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s;
        }

        .media-thumbnail iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .media-card:hover .media-thumbnail img {
            transform: scale(1.1);
        }

        .media-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: rgba(0, 174, 239, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            transition: all 0.3s;
        }

        .media-card:hover .media-play-btn {
            background: rgba(51, 191, 255, 1);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .media-content {
            padding: 15px;
        }

        .media-content h3 {
            font-size: 13px;
            color: #2c3e50;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            min-height: 36px;
        }

        /* Testimonials */
        .testimonials {
            padding: 80px 20px;
            background: white;
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .testimonial-card {
            background: linear-gradient(135deg, #EBF8FD 0%, #ffffff 100%);
            padding: 30px;
            border-radius: 25px 25px 25px 60px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid rgba(0,174,239,0.1);
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0,174,239,0.03) 0%, transparent 70%);
            transition: all 0.6s;
            z-index: 0;
        }

        .testimonial-card:hover::before {
            top: -30%;
            right: -30%;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,174,239,0.12);
            border-color: rgba(0,174,239,0.2);
        }

        .testimonial-stars {
            color: #E8830A;
            margin-bottom: 20px;
            font-size: 18px;
            display: flex;
            gap: 4px;
            position: relative;
            z-index: 1;
        }

        .testimonial-text {
            font-size: 15px;
            color: #555;
            line-height: 1.8;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
            padding-left: 20px;
            border-left: 3px solid rgba(0,174,239,0.3);
        }

        .testimonial-author {
            font-weight: 700;
            color: #2c3e50;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            position: relative;
            z-index: 1;
        }

        .testimonial-author::before {
            content: '👤';
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #00AEEF, #33BFFF);
            border-radius: 50%;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        /* Clinic Gallery Section */
        .clinic-gallery {
            padding: 80px 20px;
            background: #f8f9fa;
            position: relative;
        }

        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-slider {
            display: flex;
            gap: 30px;
            margin-top: 50px;
            overflow: hidden;
            position: relative;
        }

        .gallery-slider-wrapper {
            display: flex;
            gap: 30px;
            animation: scroll-left 40s linear infinite;
        }

        .gallery-slider-wrapper:hover {
            animation-play-state: paused;
        }

        .gallery-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 280px;
            min-width: 420px;
            flex-shrink: 0;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,174,239,0.1), rgba(51,191,255,0.2));
            opacity: 0;
            transition: opacity 0.4s;
            z-index: 1;
        }

        .gallery-item:hover::before {
            opacity: 1;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,174,239,0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.4s;
            z-index: 2;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #00AEEF, #33BFFF);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            transform: scale(0);
            transition: all 0.4s;
        }

        .gallery-item:hover .gallery-icon {
            transform: scale(1);
        }

        /* Health Articles Section */
        .health-articles {
            padding: 100px 20px;
            background: linear-gradient(180deg, #f8fafb 0%, #ffffff 50%, #f8fafb 100%);
            position: relative;
            overflow: hidden;
        }

        .health-articles::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0,174,239,0.06), transparent 70%);
            pointer-events: none;
            animation: float 20s ease-in-out infinite;
        }

        .health-articles::after {
            content: '';
            position: absolute;
            bottom: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(51,191,255,0.05), transparent 70%);
            pointer-events: none;
            animation: float 25s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(30px, -30px) rotate(5deg);
            }
            66% {
                transform: translate(-20px, 20px) rotate(-5deg);
            }
        }

        .articles-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .article-card {
            background: white;
            border-radius: 20px 20px 40px 20px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border: 2px solid rgba(0,174,239,0.15);
            cursor: pointer;
        }

        .article-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,174,239,0.03), rgba(51,191,255,0.05));
            opacity: 0;
            transition: opacity 0.5s;
            z-index: 0;
            border-radius: 28px;
        }

        .article-card:hover::before {
            opacity: 1;
        }

        .article-card:hover {
            transform: translateY(-15px) scale(1.02) rotate(-1deg);
            box-shadow: 0 25px 50px rgba(0,174,239,0.25);
            border-color: rgba(0,174,239,0.5);
        }

        .article-image {
            position: relative;
            height: 180px;
            overflow: hidden;
            background: linear-gradient(135deg, #e8f9f9, #d0f0f0);
        }

        .article-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%);
            opacity: 0;
            transition: opacity 0.5s;
            z-index: 1;
        }

        .article-card:hover .article-image::before {
            opacity: 1;
        }

        .article-image::after {
            content: '\f06e';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0) rotate(-180deg);
            font-size: 50px;
            color: white;
            z-index: 2;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            opacity: 0;
            text-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        .article-card:hover .article-image::after {
            transform: translate(-50%, -50%) scale(1) rotate(0deg);
            opacity: 1;
        }

        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .article-card:hover .article-image img {
            transform: scale(1.2);
            filter: brightness(0.9);
        }

        .article-category {
            position: absolute;
            top: 12px;
            left: 12px;
            background: linear-gradient(135deg, #00AEEF, #33BFFF);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 9px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 3;
            box-shadow: 0 6px 20px rgba(0,174,239,0.6);
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            backdrop-filter: blur(10px);
        }

        .article-card:hover .article-category {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 30px rgba(0,174,239,0.8);
        }

        .article-content {
            padding: 20px;
            position: relative;
            z-index: 1;
            background: white;
        }

        .article-title {
            font-size: 16px;
            color: #2c3e50;
            margin-bottom: 10px;
            line-height: 1.3;
            font-weight: 800;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            min-height: 42px;
            transition: all 0.4s;
            letter-spacing: -0.2px;
        }

        .article-card:hover .article-title {
            color: #00AEEF;
            transform: translateX(5px);
        }

        .article-excerpt {
            color: #666;
            font-size: 13px;
            line-height: 1.5;
            margin-bottom: 14px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            min-height: 40px;
        }

        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 12px;
            border-top: 1px solid #f0f0f0;
            gap: 10px;
        }

        .article-meta-left {
            display: flex;
            gap: 20px;
            align-items: center;
            flex-wrap: wrap;
        }

        .article-meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
            color: #999;
            font-size: 11px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .article-card:hover .article-meta-item {
            color: #555;
        }

        .article-meta-item i {
            color: #00AEEF;
            font-size: 12px;
            transition: all 0.4s;
        }

        .article-card:hover .article-meta-item i {
            transform: scale(1.2) rotate(5deg);
        }

        .article-link {
            color: #00AEEF;
            text-decoration: none;
            font-weight: 800;
            font-size: 12px;
            transition: all 0.4s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(0,174,239,0.1), rgba(51,191,255,0.15));
            white-space: nowrap;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .article-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #00AEEF, #33BFFF);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: -1;
        }

        .article-link:hover::before {
            transform: scaleX(1);
            transform-origin: left;
        }

        .article-link:hover {
            color: white;
            transform: translateX(8px);
            box-shadow: 0 8px 20px rgba(0,174,239,0.4);
            border-color: rgba(0,174,239,0.3);
        }

        .article-link i {
            transition: all 0.4s;
            font-size: 11px;
        }

        .article-link:hover i {
            transform: translateX(8px) scale(1.2);
        }

        .articles-btn-wrapper {
            text-align: center;
            margin-top: 40px;
        }

        .all-articles-btn {
            background: linear-gradient(135deg, #00AEEF, #33BFFF);
            color: white;
            padding: 14px 45px;
            border: none;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 800;
            cursor: pointer;
            display: inline-block;
            transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 12px 35px rgba(0,174,239,0.4);
            text-transform: uppercase;
            letter-spacing: 1.2px;
            position: relative;
            overflow: hidden;
        }

        .all-articles-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255,255,255,0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.8s, height 0.8s;
        }

        .all-articles-btn:hover::before {
            width: 500px;
            height: 500px;
        }

        .all-articles-btn:hover {
            transform: translateY(-6px) scale(1.05);
            box-shadow: 0 20px 50px rgba(0,174,239,0.6);
        }

        /* Footer - Modern ve Kurumsal Tasarım */
        .footer {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            color: #e8e8e8;
            padding: 60px 20px 30px;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #00AEEF, #33BFFF, transparent);
        }

        .footer::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0,174,239,0.08), transparent 70%);
            pointer-events: none;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #ffffff;
            font-weight: 700;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #00AEEF, #33BFFF);
            border-radius: 2px;
        }

        .footer-column h4 {
            font-size: 16px;
            margin-bottom: 18px;
            font-weight: 600;
            color: #ffffff;
        }

        .footer-column p {
            color: #b8b8b8;
            line-height: 1.7;
            margin-bottom: 20px;
            font-size: 14px;
        }

        .footer-social {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .footer-social-icon {
            width: 38px;
            height: 38px;
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #e8e8e8;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.08);
        }

        .footer-social-icon:hover {
            background: linear-gradient(135deg, #00AEEF, #33BFFF);
            transform: translateY(-3px);
            border-color: transparent;
            box-shadow: 0 5px 15px rgba(0,174,239,0.3);
            color: #ffffff;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #b8b8b8;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }

        .footer-links a::before {
            content: '→';
            color: #00AEEF;
            font-size: 14px;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s;
        }

        .footer-links a:hover {
            color: #ffffff;
            padding-left: 0;
        }

        .footer-links a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        .footer-contact {
            list-style: none;
        }

        .footer-contact li {
            color: #b8b8b8;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            transition: all 0.3s;
        }

        .footer-contact li:hover {
            color: #ffffff;
        }

        .footer-contact i {
            color: #00AEEF;
            width: 18px;
            font-size: 14px;
        }

        /* Footer Accordion for Mobile */
        .footer-accordion-header {
            cursor: default;
            position: relative;
            user-select: none;
        }

        .footer-accordion-icon {
            display: none;
            transition: transform 0.3s ease;
            font-size: 14px;
            color: #B3E5FC;
        }

        .footer-accordion-content {
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        }

        /* Desktop - her şey açık */
        @media (min-width: 769px) {
            .footer-accordion-content {
                max-height: none !important;
                overflow: visible !important;
                opacity: 1 !important;
            }
        }

        /* Mobile - accordion aktif */
        @media (max-width: 768px) {
            .footer-accordion-header {
                cursor: pointer;
                padding: 15px 0;
                display: flex;
                justify-content: space-between;
                align-items: center;
                transition: all 0.3s ease;
            }

            .footer-accordion-header:hover {
                color: #B3E5FC;
            }

            .footer-accordion-icon {
                display: block;
            }

            .footer-accordion-content {
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                margin-top: 0;
            }

            .footer-accordion.active .footer-accordion-content {
                max-height: 600px;
                opacity: 1;
                margin-top: 15px;
            }

            .footer-accordion.active .footer-accordion-icon {
                transform: rotate(180deg);
            }

            .footer-column h4 {
                margin-bottom: 0;
            }

            .footer-accordion.active .footer-accordion-header {
                margin-bottom: 0;
            }

            /* İlk kolon (hakkımızda) her zaman açık */
            .footer-about .footer-accordion-content {
                max-height: none !important;
                overflow: visible !important;
                opacity: 1 !important;
            }
        }

        /* Copyright - Modern Tasarım */
        .copyright {
            background: rgba(0,0,0,0.2);
            color: #999;
            padding: 20px 20px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .copyright-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .copyright-container p {
            font-size: 13px;
            color: #b8b8b8;
        }

        .copyright-links {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .copyright-links a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 13px;
        }

        .copyright-links a:hover {
            color: #00AEEF;
        }

        .copyright-links span {
            color: #555;
        }

        /* Slider Functionality */
        .slider-content {
            display: none;
            min-height: 350px;
        }

        .slider-content.active {
            display: block;
        }
        
        .hero-content {
            min-height: 350px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .header-container {
                max-width: 100%;
            }
            
            .nav-link {
                padding: 10px 12px;
                font-size: 13px;
            }
            
            .videolar-btn {
                padding: 10px 20px;
                font-size: 13px;
            }
            
            /* Dropdown responsive */
            .dropdown-menu {
                min-width: 220px;
                max-width: 280px;
            }
            
            /* Hizmetlerimiz menüsü mobilde de tek sütun */
            .dropdown-menu.services-menu {
                min-width: 240px;
                max-width: 300px;
            }
        }
        
        @media (max-width: 992px) {
            .main-nav {
                display: none;
            }
        
            .mobile-menu-toggle {
                display: flex;
            }
            
            /* Mobilde dropdown tamamen gizli */
            .dropdown-menu {
                display: none !important;
            }
            
            .about-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .about-image {
                max-width: 400px;
                margin: 0 auto;
            }
            
            .stats-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
            
            .timeline {
                padding-left: 40px;
            }
            
            .timeline::before {
                left: 20px;
            }
            
            .timeline-item {
                display: block;
                padding-left: 40px;
                position: relative;
            }
            
            .timeline-item > div:empty {
                display: none;
            }
            
            .timeline-dot {
                left: 20px;
                transform: translateX(-50%);
            }
            
            .timeline-content {
                margin-left: 0;
            }

            .top-bar-container {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }

            .top-bar-left {
                flex-direction: column;
                gap: 10px;
            }

            .top-bar-right {
                justify-content: center;
            }

            .videolar-btn {
                padding: 10px 25px;
                font-size: 14px;
            }

            .logo-text h1 {
                font-size: 18px;
            }

            .logo-icon {
                width: 45px;
                height: 45px;
                font-size: 22px;
            }
        }

        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }

            .page-header h1 {
                font-size: 36px;
            }
            
            .page-header p {
                font-size: 16px;
            }
            
            .about-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .about-image {
                max-width: 100%;
            }
            
            .about-content h2 {
                font-size: 32px;
            }
            
            .about-content p {
                font-size: 15px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .stat-card {
                padding: 20px;
            }
            
            .stat-number {
                font-size: 36px;
            }
            
            .experience-section {
                padding: 60px 20px;
            }
            
            .timeline {
                padding-left: 50px;
            }
            
            .timeline::before {
                left: 25px;
            }
            
            .timeline-item {
                display: block;
                margin-bottom: 40px;
            }
            
            .timeline-item > div:nth-child(2) {
                display: none;
            }
            
            .timeline-content {
                padding: 20px;
                margin-left: 0;
            }
            
            .timeline-dot {
                left: 25px;
                transform: translateX(-50%);
                top: 30px;
            }
            
            .timeline-year {
                font-size: 20px;
            }
            
            .timeline-title {
                font-size: 18px;
            }
            
            .timeline-desc {
                font-size: 14px;
            }
            
            .top-bar {
                padding: 8px 0;
                font-size: 12px;
            }

            .top-bar-item {
                font-size: 11px;
            }

            .top-social-icon {
                width: 25px;
                height: 25px;
                font-size: 12px;
            }

            header {
                padding: 12px 0;
            }

            .logo-text h1 {
                font-size: 16px;
            }

            .logo-icon {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .videolar-btn {
                display: none;
            }

            .hero {
                padding: 30px 15px;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .hero-image {
                order: -1;
                text-align: center;
            }

            .hero-image img {
                max-width: 200px;
                max-height: 220px;
            }
            
            .hero-image::before,
            .hero-image::after {
                width: 200px;
                height: 200px;
            }

            .hero-title {
                font-size: 24px;
                margin-bottom: 15px;
                line-height: 1.3;
            }

            .hero-description {
                font-size: 14px;
                margin-bottom: 20px;
                line-height: 1.6;
            }

            .hero-btn {
                padding: 10px 25px;
                font-size: 13px;
            }
            
            .hero-tag {
                font-size: 12px;
                margin-bottom: 8px;
            }
            
            .slider-dots {
                margin-top: 20px;
            }
            
            .dot {
                width: 10px;
                height: 10px;
            }
            
            .dot.active {
                width: 25px;
            }

            .info-boxes-section {
                padding: 28px 15px 20px;
            }

            .info-boxes-container {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .info-box {
                padding: 24px 20px;
                min-height: auto;
                border-radius: 14px;
            }

            .info-box h3 {
                font-size: 18px;
                margin-bottom: 12px;
                padding-bottom: 12px;
            }
            
            .info-box h3::after {
                width: 36px;
                height: 3px;
            }

            .info-box p {
                font-size: 13px;
                line-height: 1.65;
                margin-bottom: 18px;
            }
            
            .info-box-btn {
                padding: 10px 16px;
                font-size: 13px;
            }

            .social-contact {
                padding: 30px 20px;
            }

            .social-container {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .social-icons {
                justify-content: center;
            }

            .phone-number {
                font-size: 24px;
            }

            .services {
                padding: 25px 15px 40px;
            }

            .section-title {
                font-size: 26px;
                margin-bottom: 12px;
            }
            
            .section-title.style-5 {
                padding-bottom: 15px;
            }
            
            .section-title.style-5::after {
                width: 80px;
                height: 3px;
            }

            .section-subtitle {
                font-size: 13px;
                margin-bottom: 35px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 18px;
                margin-top: 35px;
            }

            .service-card {
                padding: 25px 18px;
                border-radius: 20px;
            }
            
            .service-icon {
                width: 60px;
                height: 60px;
                font-size: 28px;
                margin-bottom: 15px;
            }
            
            .service-card h3 {
                font-size: 16px;
                margin-bottom: 10px;
            }
            
            .service-card p {
                font-size: 13px;
                line-height: 1.6;
            }

            .treatment-areas {
                padding: 40px 15px;
            }
            
            .treatment-grid {
                gap: 20px;
                margin-top: 30px;
            }

            .treatment-item {
                grid-template-columns: 1fr;
                max-height: none;
                border-radius: 15px;
            }

            .treatment-content {
                padding: 20px 18px;
            }

            .treatment-content h3 {
                font-size: 15px;
                margin-bottom: 10px;
            }

            .treatment-content p {
                font-size: 12px;
                line-height: 1.5;
                margin-bottom: 0;
            }

            .treatment-button-area {
                padding: 15px;
            }

            .treatment-online-btn {
                padding: 9px 18px;
                font-size: 12px;
                gap: 6px;
            }

            .videos {
                padding: 40px 15px;
            }
            
            .video-grid {
                gap: 20px;
                margin-bottom: 30px;
            }
            
            .video-grid-wrapper {
                gap: 20px;
            }

            .video-card {
                min-width: 280px;
                border-radius: 15px 15px 30px 15px;
            }
            
            .video-thumbnail {
                padding-top: 56.25%;
            }
            
            .play-button {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
            
            .video-category {
                top: 12px;
                left: 12px;
                padding: 5px 12px;
                font-size: 11px;
            }
            
            .video-duration {
                bottom: 12px;
                right: 12px;
                padding: 4px 10px;
                font-size: 12px;
            }
            
            .video-content {
                padding: 15px;
            }

            .video-content h3 {
                font-size: 14px;
                min-height: 42px;
                margin-bottom: 10px;
            }
            
            .video-meta {
                font-size: 12px;
                gap: 12px;
            }
            
            .video-meta-item {
                gap: 4px;
            }
            
            .video-meta-item i {
                font-size: 12px;
            }

            .all-videos-btn {
                padding: 11px 28px;
                font-size: 13px;
            }

            .testimonials {
                padding: 40px 15px;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 18px;
                margin-top: 30px;
            }

            .testimonial-card {
                padding: 20px 18px;
                border-radius: 20px 20px 20px 45px;
            }
            
            .testimonial-stars {
                font-size: 16px;
                margin-bottom: 15px;
                gap: 3px;
            }
            
            .testimonial-text {
                font-size: 13px;
                line-height: 1.7;
                margin-bottom: 18px;
                padding-left: 15px;
            }
            
            .testimonial-author {
                font-size: 14px;
            }
            
            .testimonial-author::before {
                width: 35px;
                height: 35px;
                font-size: 18px;
            }

            .clinic-gallery {
                padding: 40px 15px;
            }
            
            .gallery-slider {
                gap: 20px;
                margin-top: 35px;
            }
            
            .gallery-slider-wrapper {
                gap: 20px;
            }

            .gallery-item {
                min-width: 300px;
                height: 200px;
                border-radius: 15px;
            }
            
            .gallery-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .working-hours {
                padding: 35px 15px;
            }
            
            .working-hours .section-title {
                font-size: 26px;
            }
            
            .working-hours .section-subtitle {
                font-size: 13px;
                margin-bottom: 25px;
            }

            .hours-grid {
                grid-template-columns: 1fr;
                gap: 18px;
                margin-top: 25px;
            }
            
            .hours-card {
                padding: 20px;
                border-radius: 12px;
            }
            
            .hours-header {
                margin-bottom: 12px;
                padding-bottom: 12px;
                gap: 10px;
            }
            
            .hours-header i {
                font-size: 20px;
            }
            
            .hours-header h3 {
                font-size: 16px;
            }
            
            .hours-description {
                font-size: 12px;
                margin-bottom: 15px;
            }
            
            .hours-item {
                padding: 8px 12px;
                margin-bottom: 5px;
                border-radius: 6px;
            }
            
            .hours-item .day,
            .hours-item .time {
                font-size: 13px;
            }
            
            .hours-btn {
                padding: 10px 22px;
                font-size: 13px;
            }

            .health-articles {
                padding: 40px 15px;
            }

            .articles-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 20px;
                margin-top: 25px;
            }

            .article-card {
                border-radius: 15px 15px 30px 15px;
                min-width: 280px;
            }

            .article-image {
                height: 160px;
            }
            
            .article-category {
                top: 8px;
                left: 8px;
                padding: 4px 10px;
                font-size: 8px;
                letter-spacing: 0.3px;
            }
            
            .article-content {
                padding: 12px;
            }

            .article-title {
                font-size: 13px;
                margin-bottom: 6px;
                min-height: 36px;
            }

            .article-excerpt {
                font-size: 11px;
                line-height: 1.4;
                margin-bottom: 10px;
                min-height: 46px;
            }
            
            .article-meta {
                padding-top: 8px;
                gap: 6px;
            }
            
            .article-meta-item {
                font-size: 10px;
                gap: 3px;
            }
            
            .article-meta-item i {
                font-size: 10px;
            }
            
            .article-link {
                padding: 6px 12px;
                font-size: 10px;
                gap: 4px;
            }
            
            .articles-btn-wrapper {
                margin-top: 25px;
            }

            .all-articles-btn {
                padding: 10px 28px;
                font-size: 11px;
                letter-spacing: 1px;
            }

            .footer {
                padding: 25px 20px 15px;
            }
        
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 0;
                margin-bottom: 0;
            }
        
            .footer-column {
                padding: 10px 0;
                border-bottom: 1px solid rgba(255,255,255,0.08);
            }
        
            .footer-column:last-child {
                border-bottom: none;
                padding-bottom: 5px;
            }
        
            .footer-column:first-child {
                padding-top: 0;
            }

            .footer-column h3 {
                font-size: 18px;
                margin-bottom: 8px;
            }
        
            .footer-column h4 {
                font-size: 15px;
                margin-bottom: 6px;
            }
        
            .footer-column p {
                font-size: 13px;
                line-height: 1.5;
                margin-bottom: 8px;
            }
        
            .footer-links li {
                margin-bottom: 4px;
            }

            .footer-links a,
            .footer-contact li {
                font-size: 13px;
            }

            .footer-social {
                gap: 6px;
                margin-top: 8px;
            }

            .footer-social-icon {
                width: 34px;
                height: 34px;
                font-size: 14px;
            }

            .copyright {
                display: none !important;
            }

            .cookie-notice {
                left: 10px;
                right: 10px;
                bottom: 10px;
                padding: 20px;
            }

            .fixed-social-bar {
                right: 10px;
                gap: 10px;
            }

            .fixed-icon-btn {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .scroll-to-top {
                width: 45px;
                height: 45px;
                bottom: 20px;
                right: 20px;
            }
        }

        @media (max-width: 480px) {
            .top-bar {
                padding: 6px 0;
            }

            .top-bar-item span,
            .top-bar-item a {
                font-size: 10px;
            }

            .lang-switcher {
                display: none;
            }

            header {
                padding: 10px 0;
            }

            .logo-text h1 {
                font-size: 14px;
            }

            .logo-icon {
                width: 35px;
                height: 35px;
                font-size: 18px;
            }

            .hero {
                padding: 25px 12px;
            }

            .hero-container {
                gap: 20px;
            }

            .hero-image img {
                max-width: 180px;
                max-height: 200px;
            }

            .hero-image::before,
            .hero-image::after {
                width: 180px;
                height: 180px;
            }

            .hero-title {
                font-size: 21px;
                margin-bottom: 12px;
            }

            .hero-description {
                font-size: 13px;
                margin-bottom: 18px;
            }

            .hero-btn {
                padding: 9px 22px;
                font-size: 12px;
            }

            .hero-tag {
                font-size: 11px;
            }

            .info-boxes-section {
                padding: 22px 12px 16px;
            }

            .info-boxes-container {
                gap: 14px;
            }

            .info-box {
                padding: 20px 18px;
                border-radius: 12px;
            }

            .info-box h3 {
                font-size: 16px;
                margin-bottom: 10px;
                padding-bottom: 10px;
            }

            .info-box p {
                font-size: 12px;
                margin-bottom: 16px;
            }

            .info-box-btn {
                padding: 10px 16px;
                font-size: 12px;
            }

            .social-contact {
                padding: 25px 15px;
            }

            .phone-number {
                font-size: 22px;
            }

            .services {
                padding: 20px 12px 35px;
            }

            .section-title {
                font-size: 22px;
                margin-bottom: 10px;
            }

            .section-subtitle {
                font-size: 12px;
                margin-bottom: 30px;
            }

            .services-grid {
                gap: 16px;
                margin-top: 30px;
            }

            .service-card {
                padding: 22px 16px;
                border-radius: 18px;
            }

            .service-icon {
                width: 55px;
                height: 55px;
                font-size: 26px;
                margin-bottom: 12px;
            }

            .service-card h3 {
                font-size: 15px;
                margin-bottom: 8px;
            }

            .service-card p {
                font-size: 12px;
            }

            .treatment-areas {
                padding: 35px 12px;
            }

            .treatment-grid {
                gap: 18px;
                margin-top: 25px;
            }

            .treatment-content {
                padding: 18px 16px;
            }

            .treatment-content h3 {
                font-size: 14px;
                margin-bottom: 8px;
            }

            .treatment-content p {
                font-size: 11px;
            }

            .treatment-button-area {
                padding: 12px;
            }

            .treatment-online-btn {
                padding: 8px 16px;
                font-size: 11px;
            }

            .videos {
                padding: 35px 12px;
            }

            .video-grid {
                gap: 18px;
                margin-bottom: 25px;
            }

            .video-card {
                min-width: 260px;
                border-radius: 12px 12px 25px 12px;
            }

            .play-button {
                width: 55px;
                height: 55px;
                font-size: 22px;
            }

            .video-content {
                padding: 12px;
            }

            .video-content h3 {
                font-size: 13px;
                min-height: 38px;
                margin-bottom: 8px;
            }

            .video-meta {
                font-size: 11px;
                gap: 10px;
            }

            .all-videos-btn {
                padding: 10px 25px;
                font-size: 12px;
            }

            .testimonials {
                padding: 35px 12px;
            }

            .testimonials-grid {
                gap: 16px;
                margin-top: 25px;
            }

            .testimonial-card {
                padding: 18px 16px;
                border-radius: 18px 18px 18px 40px;
            }

            .testimonial-stars {
                font-size: 15px;
                margin-bottom: 12px;
            }

            .testimonial-text {
                font-size: 12px;
                margin-bottom: 16px;
                padding-left: 12px;
            }

            .testimonial-author {
                font-size: 13px;
            }

            .testimonial-author::before {
                width: 32px;
                height: 32px;
                font-size: 16px;
            }

            .clinic-gallery {
                padding: 35px 12px;
            }

            .gallery-slider {
                gap: 18px;
                margin-top: 30px;
            }

            .gallery-item {
                min-width: 280px;
                height: 180px;
                border-radius: 12px;
            }

            .gallery-icon {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }

            .working-hours {
                padding: 30px 12px;
            }

            .working-hours .section-title {
                font-size: 24px;
            }

            .working-hours .section-subtitle {
                font-size: 12px;
                margin-bottom: 22px;
            }

            .hours-grid {
                gap: 16px;
                margin-top: 22px;
            }

            .hours-card {
                padding: 18px;
                border-radius: 10px;
            }

            .hours-header {
                margin-bottom: 10px;
                padding-bottom: 10px;
                gap: 8px;
            }

            .hours-header i {
                font-size: 18px;
            }

            .hours-header h3 {
                font-size: 15px;
            }

            .hours-description {
                font-size: 11px;
                margin-bottom: 12px;
            }

            .hours-item {
                padding: 7px 10px;
                margin-bottom: 4px;
            }

            .hours-item .day,
            .hours-item .time {
                font-size: 12px;
            }

            .hours-btn {
                padding: 9px 20px;
                font-size: 12px;
            }

            .health-articles {
                padding: 35px 12px;
            }

            .articles-grid {
                grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
                gap: 18px;
                margin-top: 20px;
            }

            .article-card {
                border-radius: 12px 12px 25px 12px;
                min-width: 260px;
            }

            .article-image {
                height: 146px;
            }

            .article-category {
                top: 6px;
                left: 6px;
                padding: 3px 8px;
                font-size: 7px;
            }

            .article-content {
                padding: 12px;
            }

            .article-title {
                font-size: 12px;
                margin-bottom: 5px;
                min-height: 32px;
            }

            .article-excerpt {
                font-size: 10px;
                line-height: 1.3;
                margin-bottom: 8px;
                min-height: 40px;
            }

            .article-meta {
                padding-top: 6px;
                gap: 5px;
            }

            .article-meta-item {
                font-size: 9px;
                gap: 2px;
            }

            .article-meta-item i {
                font-size: 9px;
            }

            .article-link {
                padding: 5px 10px;
                font-size: 9px;
                gap: 3px;
            }

            .articles-btn-wrapper {
                margin-top: 20px;
            }

            .all-articles-btn {
                padding: 9px 22px;
                font-size: 10px;
                letter-spacing: 0.6px;
            }

            .footer {
                padding: 22px 15px 15px;
            }
        
            .footer-grid {
                gap: 0;
                margin-bottom: 0;
            }
            
            .footer-column {
                padding: 8px 0;
            }
            
            .footer-column:first-child {
                padding-top: 0;
            }
            
            .footer-column:last-child {
                padding-bottom: 5px;
            }
        
            .footer-column h3 {
                font-size: 17px;
                margin-bottom: 8px;
            }
        
            .footer-column h4 {
                font-size: 14px;
                margin-bottom: 5px;
            }
        
            .footer-column p {
                font-size: 13px;
                margin-bottom: 6px;
            }
        
            .copyright {
                display: none !important;
            }

            .cookie-notice {
                left: 8px;
                right: 8px;
                bottom: 8px;
                padding: 18px;
            }

            .fixed-social-bar {
                right: 5px;
                gap: 8px;
            }

            .fixed-icon-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .scroll-to-top {
                width: 40px;
                height: 40px;
                bottom: 15px;
                right: 15px;
                font-size: 18px;
            }
        }

/* Category Filters */
.category-filters {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: white;
    border: 2px solid #00AEEF;
    color: #00AEEF;
    border-radius: 50px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #0090C8 0%, #00AEEF 50%, #33BFFF 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,174,239,0.3);
}

/* Page Header - Alt Sayfalar İçin */
.page-header {
    background: linear-gradient(135deg, #0090C8 0%, #00AEEF 50%, #33BFFF 100%);
    padding: 80px 20px 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0 Q300,60 600,30 T1200,0 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.1)"/></svg>') bottom center no-repeat;
    background-size: cover;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.breadcrumb {
    max-width: 1200px;
    margin: -30px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.breadcrumb-list {
    background: white;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-list a {
    color: #00AEEF;
    text-decoration: none;
    transition: all 0.3s;
}

.breadcrumb-list a:hover {
    color: #0090C8;
}

.breadcrumb-list span {
    color: #999;
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background: white;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.about-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 30px;
}

.about-content h2 span {
    background: linear-gradient(135deg, #0090C8, #00AEEF, #33BFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-content p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #EBF8FD, #FFF8F0);
    border-radius: 20px;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,174,239,0.15);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #0090C8, #00AEEF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Experience Timeline */
.experience-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #EBF8FD, #FFF8F0);
}

.experience-container {
    max-width: 1000px;
    margin: 0 auto;
}

.experience-container .section-title {
    font-size: 36px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #00AEEF, #33BFFF);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,174,239,0.15);
}

.timeline-year {
    font-size: 24px;
    font-weight: 700;
    color: #00AEEF;
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.timeline-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #0090C8, #00AEEF);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 8px rgba(0,174,239,0.1);
}

/* Service Detail Section */
.service-detail {
    padding: 80px 20px;
    background: white;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-hero-content h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.2;
}

.service-hero-content p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-hero-image {
    background: linear-gradient(135deg, #EBF8FD, #FFF8F0);
    border-radius: 25px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero-image i {
    font-size: 120px;
    color: #00AEEF;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0090C8 0%, #00AEEF 50%, #33BFFF 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,174,239,0.4);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h3 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 16px;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.feature-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,174,239,0.15);
    border-color: rgba(0,174,239,0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #EBF8FD, #FFF8F0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 32px;
    color: #00AEEF;
}

.feature-card h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.process-section {
    background: linear-gradient(135deg, #EBF8FD, #FFF8F0);
    padding: 60px;
    border-radius: 25px;
    margin-bottom: 80px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0090C8, #00AEEF);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0,174,239,0.3);
}

.process-step h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.info-box {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid #00AEEF;
    margin-bottom: 80px;
}

.info-box h4 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-box h4 i {
    color: #00AEEF;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box ul li {
    padding: 12px 0;
    color: #666;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-box ul li i {
    color: #00AEEF;
    margin-top: 4px;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 80px 20px;
    background: white;
}

.mv-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.mv-card {
    background: linear-gradient(135deg, #EBF8FD, #FFF8F0);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,174,239,0.15);
    transition: all 0.4s;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,174,239,0.25);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0,174,239,0.1), transparent);
    border-radius: 50%;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00AEEF, #33BFFF);
    border-radius: 50% 50% 50% 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,174,239,0.4);
    position: relative;
    z-index: 1;
}

.mv-card h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.mv-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Values Section */
.values-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00AEEF, #33BFFF);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,174,239,0.2);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0,174,239,0.1), rgba(51,191,255,0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #00AEEF;
    margin: 0 auto 20px;
    transition: all 0.4s;
}

.value-card:hover .value-icon {
    transform: rotateY(360deg) scale(1.1);
    background: linear-gradient(135deg, #00AEEF, #33BFFF);
    color: white;
}

.value-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: white;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    color: #00AEEF;
    transform: rotate(90deg);
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    position: relative;
    z-index: 10000;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
    padding: 20px;
    background: rgba(0, 174, 239, 0.7);
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10001;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 174, 239, 1);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 30px;
    border-radius: 30px;
    z-index: 10001;
}

@media (max-width: 768px) {
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }
    
    .lightbox-caption {
        font-size: 14px;
        padding: 10px 20px;
        bottom: 20px;
    }
}
/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE-FIXES.CSS — Dr. Evren Akmut
   Bu dosyayı styles.css'in SONUNA ekle ya da <link> ile en son yükle.
   Tüm mobil sorunları tek dosyadan yönetir.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── GENEL TEMEL ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html, body {
    overflow-x: hidden;
    width: 100%;
    -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; display: block; }

/* ═══════════════════════════════════════════════════════════════════════════
   TABLET — max-width: 992px
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 992px) {

    /* TOP BAR */
    .top-bar-container {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 0 16px;
        gap: 8px;
    }
    .top-bar-left {
        flex-wrap: nowrap;
        gap: 12px;
        overflow: hidden;
    }
    .top-bar-item:nth-child(2) { display: none; } /* e-posta gizle */
    .top-bar-right { gap: 6px; flex-shrink: 0; }

    /* HEADER */
    .header-container { padding: 0 16px; height: 64px; }
    .main-nav  { display: none !important; }
    .header-cta-btn { display: none !important; }
    .mobile-menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }

    /* HERO */
    .hero { padding: 32px 16px 40px; }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    .hero-content { padding: 0; order: 2; }
    .hero-image   { order: 1; }
    .slider-dots  { justify-content: center; margin-top: 16px; }

    /* INFO BOXES */
    .info-boxes-section { padding: 40px 16px; }
    .info-boxes-container {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 520px;
        margin: 0 auto;
    }
    .info-box {
        min-height: auto;
        padding: 32px 28px;
        border-radius: 20px 20px 50px 20px;
    }
    /* hover animasyonu tablet/mobilde kaldır — dokunuşta takılıyor */
    .info-box:hover { transform: none; }

    /* SERVICES */
    .services { padding: 40px 16px; }
    .services-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
        animation: none !important;
        width: auto !important;
        overflow: visible !important;
    }
    .service-card {
        min-width: unset !important;
        clip-path: none !important; /* mobilde bozulan clip-path kaldır */
        border-radius: 16px !important;
        padding: 24px 16px !important;
        flex-shrink: unset !important;
    }
    /* duplicate kartları gizle */
    .service-card-duplicate { display: none !important; }

    /* TREATMENT */
    .treatment-areas { padding: 40px 16px; }
    .treatment-item {
        grid-template-columns: 1fr;
        max-height: none;
        border-radius: 14px;
    }
    .treatment-content { padding: 20px; }
    .treatment-button-area {
        padding: 16px 20px;
        justify-content: flex-start;
        background: rgba(0,174,239,0.05);
    }

    /* VIDEOS */
    .videos { padding: 40px 16px; }
    .video-card { min-width: 260px; }

    /* TESTIMONIALS */
    .testimonials { padding: 40px 16px; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }

    /* GALLERY */
    .clinic-gallery { padding: 40px 16px; }
    .gallery-item { min-width: 260px; height: 190px; }

    /* WORKING HOURS */
    .working-hours { padding: 40px 16px; }
    .hours-grid { grid-template-columns: 1fr; gap: 16px; }

    /* HEALTH ARTICLES */
    .health-articles { padding: 40px 16px; }
    .articles-grid {
        grid-template-columns: 1fr !important;
        animation: none !important;
        width: 100% !important;
    }
    .article-card { min-width: unset !important; }

    /* SOCIAL CONTACT BAR */
    .social-contact { padding: 28px 16px; }
    .social-container {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .social-icons { justify-content: center; flex-wrap: wrap; }
    .phone-number { font-size: 26px; }

    /* FOOTER */
    .footer { padding: 40px 16px 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 0; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBİL — max-width: 768px
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* TOP BAR — tamamen gizle, çok alan kaplıyor */
    .top-bar { display: none !important; }

    /* ── HEADER ── */
    header { padding: 0; }
    .header-container {
        padding: 0 14px;
        height: 60px;
        gap: 12px;
    }
    .logo { gap: 10px; }
    .logo-icon {
        width: 40px; height: 40px;
        font-size: 18px; border-radius: 10px;
    }
    .logo-text h1 { font-size: 15px; letter-spacing: -.2px; }
    .logo-text p  { display: none; }
    .mobile-menu-toggle {
        width: 40px !important; height: 40px !important;
        min-width: 40px !important;
    }

    /* ── HERO ── */
    .hero { padding: 24px 14px 32px; }
    .hero-container { gap: 20px; }
    .hero-image img {
        max-width: 200px;
        max-height: 230px;
        margin: 0 auto;
    }
    .hero-image::before { width: 190px; height: 190px; }
    .hero-image::after  { width: 230px; height: 230px; }
    .hero-tag    { font-size: 12px; margin-bottom: 8px; }
    .hero-title  { font-size: 26px; line-height: 1.25; margin-bottom: 14px; }
    .hero-description { font-size: 14px; margin-bottom: 20px; line-height: 1.65; }
    .hero-btns   { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
    .hero-btn    { padding: 11px 28px; font-size: 13px; }
    .slider-dots { margin-top: 16px; }

    /* ── INFO BOXES ── */
    .info-boxes-section { padding: 24px 14px 20px; }
    .info-boxes-container {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 100%;
    }
    .info-box {
        min-height: auto;
        padding: 24px 20px;
        border-radius: 14px;
    }
    .info-box h3 { font-size: 18px; margin-bottom: 12px; padding-bottom: 12px; }
    .info-box p  { font-size: 13px; margin-bottom: 20px; line-height: 1.7; }
    .info-box-btn { padding: 10px 16px; font-size: 13px; }

    /* ── SOCIAL CONTACT ── */
    .social-contact { padding: 24px 14px; }
    .phone-number   { font-size: 24px; }
    .social-icon    { width: 42px; height: 42px; font-size: 17px; }

    /* ── HİZMETLER ── */
    .services { padding: 32px 14px 36px; overflow: hidden; }
    .services-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        animation: none !important;
        width: 100% !important;
        transform: none !important;
    }
    .service-card {
        min-width: unset !important;
        flex-shrink: unset !important;
        clip-path: none !important;
        border-radius: 14px !important;
        padding: 20px 14px !important;
        text-align: center;
    }
    .service-icon {
        width: 56px; height: 56px;
        font-size: 26px;
        margin: 0 auto 14px;
    }
    .service-card h3 { font-size: 14px; margin-bottom: 8px; }
    .service-card p  { font-size: 12px; line-height: 1.55; }
    .service-card-duplicate { display: none !important; }

    /* ── TREATMENT ── */
    .treatment-areas { padding: 32px 14px; }
    .treatment-grid  { gap: 16px; margin-top: 24px; }
    .treatment-item  {
        grid-template-columns: 1fr;
        max-height: none;
        border-radius: 14px;
    }
    .treatment-content { padding: 18px 16px; }
    .treatment-content h3 { font-size: 15px; margin-bottom: 10px; }
    .treatment-content p  { font-size: 13px; margin-bottom: 0; }
    .treatment-button-area {
        border-top: 1px solid rgba(0,174,239,0.1);
        padding: 14px 16px;
        justify-content: flex-start;
        background: rgba(0,174,239,0.04);
    }
    .treatment-online-btn { padding: 10px 20px; font-size: 13px; }

    /* ── VİDEOLAR ── */
    .videos { padding: 32px 14px; }
    .video-card { min-width: 260px; border-radius: 14px; }
    .play-button { width: 56px; height: 56px; font-size: 22px; }
    .video-content    { padding: 14px; }
    .video-content h3 { font-size: 13px; min-height: 40px; margin-bottom: 8px; }
    .video-meta       { font-size: 11px; gap: 10px; }
    .all-videos-btn   { padding: 11px 28px; font-size: 13px; }

    /* ── YORUMLAr ── */
    .testimonials { padding: 32px 14px; }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 24px;
    }
    .testimonial-card { padding: 20px 16px; border-radius: 16px 16px 16px 40px; }
    .testimonial-text { font-size: 13px; padding-left: 14px; margin-bottom: 16px; }
    .testimonial-author { font-size: 13px; }

    /* ── GALERİ ── */
    .clinic-gallery { padding: 32px 14px; }
    .gallery-slider-wrapper { gap: 14px; }
    .gallery-item   { min-width: 260px; height: 185px; border-radius: 14px; }

    /* ── ÇALIŞMA SAATLERİ ── */
    .working-hours { padding: 32px 14px; }
    .hours-grid    { grid-template-columns: 1fr; gap: 14px; margin-top: 20px; }
    .hours-card    { padding: 18px; border-radius: 12px; }
    .hours-header h3 { font-size: 15px; }
    .hours-item      { padding: 8px 10px; margin-bottom: 4px; }
    .hours-item .day,
    .hours-item .time { font-size: 13px; }
    .hours-btn       { padding: 10px 22px; font-size: 13px; }

    /* ── SAĞLIK YAZILARI ── */
    .health-articles { padding: 32px 14px; }
    .articles-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        animation: none !important;
        width: 100% !important;
        margin-top: 20px;
    }
    .article-card   { min-width: unset !important; border-radius: 14px !important; }
    .article-image  { height: 170px !important; }
    .article-content { padding: 14px !important; }
    .article-title  { font-size: 14px !important; margin-bottom: 8px !important; min-height: auto !important; }
    .article-excerpt { font-size: 13px !important; line-height: 1.5 !important; margin-bottom: 12px !important; min-height: auto !important; }
    .article-category { font-size: 10px !important; padding: 4px 10px !important; }
    .article-link   { padding: 6px 14px !important; font-size: 12px !important; }
    .articles-btn-wrapper { margin-top: 24px; }
    .all-articles-btn { padding: 11px 28px; font-size: 12px; letter-spacing: 1px; }

    /* ── SECTION TITLES ── */
    .section-title    { font-size: 24px !important; margin-bottom: 10px; }
    .section-subtitle { font-size: 13px !important; margin-bottom: 28px; }
    .section-title.style-5 { padding-bottom: 16px; }
    .section-title.style-5::after { width: 70px; height: 3px; }
    .section-title.style-4 { padding: 12px 30px; font-size: 22px !important; }

    /* ── FOOTER ── */
    .footer       { padding: 36px 14px 24px; }
    .footer-grid  { grid-template-columns: 1fr; gap: 0; }
    .footer-column h3 { font-size: 18px; }
    .footer-column h4 { font-size: 15px; }
    .copyright    { padding: 18px 14px; }
    .copyright-container {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    /* ── SABİT BUTONLAR ── */
    .fixed-social-bar { right: 10px; gap: 8px; }
    .fixed-icon-btn   { width: 44px; height: 44px; font-size: 17px; }
    .scroll-to-top    { width: 44px; height: 44px; bottom: 16px; right: 16px; font-size: 16px; }

    /* ── COOKIE ── */
    .cookie-notice { left: 10px; right: 10px; bottom: 10px; padding: 18px 16px; border-radius: 14px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   KÜÇÜK MOBİL — max-width: 480px
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {

    /* HEADER */
    .header-container { height: 56px; padding: 0 12px; }
    .logo-icon  { width: 36px; height: 36px; font-size: 16px; border-radius: 8px; }
    .logo-text h1 { font-size: 13px; }
    .mobile-menu-toggle { width: 36px !important; height: 36px !important; min-width: 36px !important; }

    /* HERO */
    .hero { padding: 20px 12px 28px; }
    .hero-image img  { max-width: 170px; max-height: 200px; }
    .hero-image::before { width: 160px; height: 160px; }
    .hero-image::after  { width: 200px; height: 200px; }
    .hero-title       { font-size: 22px; }
    .hero-description { font-size: 13px; }
    .hero-btn         { padding: 10px 22px; font-size: 12px; }
    .hero-tag         { font-size: 11px; }

    /* HİZMETLER — tek kolon */
    .services { padding: 24px 12px 30px; }
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .service-card { padding: 18px 14px !important; border-radius: 12px !important; }
    .service-icon { width: 50px; height: 50px; font-size: 24px; margin-bottom: 12px; }
    .service-card h3 { font-size: 15px; }
    .service-card p  { font-size: 13px; }

    /* INFO BOXES */
    .info-boxes-section { padding: 20px 12px 16px; }
    .info-box { padding: 20px 16px; border-radius: 12px; }
    .info-box h3 { font-size: 16px; }
    .info-box p  { font-size: 12px; }
    .info-box-btn { padding: 10px 14px; font-size: 12px; }

    /* SOCIAL */
    .phone-number { font-size: 22px; }
    .social-icon  { width: 40px; height: 40px; font-size: 16px; }

    /* TREATMENT */
    .treatment-content { padding: 16px 14px; }
    .treatment-content h3 { font-size: 14px; }
    .treatment-content p  { font-size: 12px; }
    .treatment-online-btn { padding: 9px 18px; font-size: 12px; }

    /* VİDEOLAR */
    .video-card   { min-width: 240px; }
    .video-content h3 { font-size: 12px; min-height: 36px; }
    .play-button  { width: 50px; height: 50px; font-size: 20px; }

    /* GALERİ */
    .gallery-item { min-width: 240px; height: 170px; }

    /* ARTICLES */
    .article-image  { height: 155px !important; }
    .article-title  { font-size: 13px !important; }
    .article-excerpt { font-size: 12px !important; }

    /* SECTION TITLE */
    .section-title    { font-size: 20px !important; }
    .section-subtitle { font-size: 12px !important; margin-bottom: 22px; }

    /* TESTIMONIAL */
    .testimonial-card { padding: 18px 14px; }
    .testimonial-text { font-size: 12px; padding-left: 12px; }

    /* FOOTER */
    .footer {
        padding: 18px 12px 10px;
    }

    .footer-grid {
        gap: 0;
        margin-bottom: 0;
    }

    .footer-column {
        padding: 6px 0;
    }
    
    .footer-column:first-child {
        padding-top: 0;
    }
    
    .footer-column:last-child {
        padding-bottom: 3px;
    }

    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .footer-column h4 {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .footer-column p {
        font-size: 11px;
        line-height: 1.4;
        margin-bottom: 6px;
    }

    .footer-links li {
        margin-bottom: 3px;
    }

    .footer-links a,
    .footer-contact li {
        font-size: 11px;
    }

    .footer-social {
        gap: 5px;
        margin-top: 5px;
    }

    .footer-social-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    /* SABİT BUTONLAR */
    .fixed-icon-btn { width: 40px; height: 40px; font-size: 16px; }
    .scroll-to-top  { width: 40px; height: 40px; bottom: 14px; right: 14px; }
    
    /* COPYRIGHT LİNKLERİ GİZLE */
    .copyright-links {
        display: none !important;
    }
    
    .copyright {
        padding: 10px 12px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ÇOK KÜÇÜK — max-width: 360px
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 360px) {
    .header-container { padding: 0 10px; }
    .logo-text h1 { font-size: 12px; }
    .hero-title   { font-size: 20px; }
    .hero-image img { max-width: 150px; max-height: 180px; }
    .hero-image::before { width: 140px; height: 140px; }
    .hero-image::after  { width: 180px; height: 180px; }
    .services-grid { gap: 10px !important; }
    .service-card  { padding: 16px 12px !important; }
    .section-title { font-size: 18px !important; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBİL MENÜ — her zaman aktif
   ═══════════════════════════════════════════════════════════════════════════ */
.mobile-menu {
    position: fixed !important;
    top: 0 !important; right: -100% !important; bottom: 0 !important;
    width: 300px !important; max-width: 88vw !important;
    background: white !important;
    z-index: 9999 !important;
    overflow-y: auto !important;
    transition: right .3s cubic-bezier(.4,0,.2,1) !important;
    box-shadow: -6px 0 32px rgba(0,0,0,.15) !important;
}
.mobile-menu.active { right: 0 !important; }

.mobile-menu-overlay {
    display: none;
    position: fixed !important; inset: 0 !important;
    background: rgba(0,0,0,.5) !important;
    z-index: 9998 !important;
    backdrop-filter: blur(2px);
}
.mobile-menu-overlay.active { display: block !important; }

/* ── TOUCH dostu hover kaldır ── */
@media (hover: none) {
    .service-card:hover  { transform: none; box-shadow: 0 5px 20px rgba(0,0,0,0.08); }
    .info-box:hover      { transform: none; box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
    .treatment-item:hover { transform: none; }
    .nav-link:hover       { transform: none; }
    .hero-btn:hover,
    .info-box-btn:hover,
    .treatment-online-btn:hover { transform: none; }
}

/* ── Services inline-style override: index.php'deki animation'ı kapat ── */
@media (max-width: 992px) {
    @keyframes autoScrollServices { 0%,100% { transform: none; } }
    .services-grid { animation-play-state: paused !important; animation: none !important; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   WORKING HOURS - YENİ TASARIM
   ═══════════════════════════════════════════════════════════════════════════ */

/* Çalışma Saatlerimiz - Minimal Tasarım */
.working-hours-new {
    padding: 50px 0;
    background: #f8f9fa;
}

.working-hours-container-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title-new {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    position: relative;
    padding-top: 10px;
    padding-bottom: 20px;
}

.section-title-new::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #00AEEF, #33BFFF);
    border-radius: 2px;
    animation: titleUnderline 2s ease-in-out infinite;
}

.hours-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 35px;
}

.hours-card-new {
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border-top: 2px solid transparent;
    transition: all 0.3s ease;
}

.hours-card-new.clinic-hours {
    border-top-color: #00AEEF;
}

.hours-card-new.online-hours {
    border-top-color: #1976D2;
}

.hours-card-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hours-card-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 20px 15px;
    background: white;
}

.hours-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.hours-icon-wrapper.clinic-icon {
    background: #e8f7fc;
    color: #00AEEF;
}

.hours-icon-wrapper.online-icon {
    background: #e3f2fd;
    color: #1976D2;
}

.hours-title-wrapper {
    flex: 1;
}

.hours-title-wrapper h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.hours-title-wrapper p {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.3;
}

.hours-list-new {
    padding: 0 20px 15px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

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

.hours-row.today {
    background: transparent;
    border-left: 3px solid transparent;
    padding-left: 12px;
    margin-left: -12px;
}

.clinic-hours .hours-row.today {
    border-left-color: #00AEEF;
}

.online-hours .hours-row.today {
    border-left-color: #1976D2;
}

.hours-row.closed {
    opacity: 0.4;
}

.day-name {
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hours-row.today .day-name {
    font-weight: 700;
}

.today-badge {
    background: #1976D2;
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.time-range {
    font-size: 0.9rem;
    font-weight: 600;
}

.clinic-hours .time-range {
    color: #00AEEF;
}

.online-hours .time-range {
    color: #1976D2;
}

.time-range.closed-text {
    color: #bdc3c7;
    font-style: italic;
    font-weight: 400;
}

.hours-btn-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 11px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.hours-btn-new.clinic-btn {
    background: #e8f7fc;
    color: #00AEEF;
    border-color: #e8f7fc;
}

.hours-btn-new.clinic-btn:hover {
    background: #00AEEF;
    color: white;
    border-color: #00AEEF;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 174, 239, 0.3);
}

.hours-btn-new.online-btn {
    background: #e3f2fd;
    color: #1976D2;
    border-color: #e3f2fd;
}

.hours-btn-new.online-btn:hover {
    background: #1976D2;
    color: white;
    border-color: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(25, 118, 210, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hours-grid-new {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .working-hours-new {
        padding: 40px 0;
    }
    
    .hours-grid-new {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .section-title-new {
        font-size: 1.5rem;
    }
    
    .hours-card-header {
        padding: 18px 16px 12px;
    }
    
    .hours-list-new {
        padding: 0 16px 12px;
    }
    
    .hours-btn-new {
        width: calc(100% - 32px);
        margin: 0 16px 16px;
        font-size: 0.85rem;
    }
    
    .hours-row {
        padding: 9px 0;
    }
    
    .day-name,
    .time-range {
        font-size: 0.85rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN - MOBILE MENU
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .videolar-btn {
        display: none;
    }

    .top-bar-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 10px;
    }

    .top-bar-right {
        justify-content: center;
    }

    .header-container {
        padding: 0 15px;
    }

    .logo-text h1 {
        font-size: 16px;
    }

    .logo-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        width: 90%;
        max-width: 100%;
    }

    .mobile-menu-header {
        padding: 20px 15px;
    }

    .mobile-menu-logo-text h2 {
        font-size: 14px;
    }

    .mobile-menu-logo-text p {
        font-size: 10px;
    }

    .mobile-menu-logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .top-bar {
        font-size: 12px;
    }

    .top-bar-item {
        font-size: 11px;
    }

    .top-social-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .mobile-menu-toggle {
        width: 45px;
        height: 45px;
    }

    .mobile-menu-toggle span {
        width: 22px;
    }

    .logo-text h1 {
        font-size: 14px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .mobile-menu-header {
        padding: 18px 12px;
    }

    .mobile-menu-logo {
        gap: 10px;
    }

    .mobile-menu-logo-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .mobile-menu-logo-text h2 {
        font-size: 13px;
    }

    .mobile-menu-logo-text p {
        font-size: 9px;
    }

    .mobile-menu-close {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .mobile-nav-link {
        padding: 14px 20px;
        font-size: 14px;
    }

    .mobile-dropdown-item {
        padding: 12px 20px 12px 45px;
        font-size: 13px;
    }

    .mobile-menu-footer {
        padding: 18px 20px;
    }

    .mobile-menu-social-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}