        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f5f7fa;
        }

        /* Header Styles */
        .header {
            background: linear-gradient(135deg, #425299 0%, #425299 100%);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            position: relative;
            z-index: 1000;
        }

        .top-bar {
            background: rgba(0,0,0,0.1);
            padding: 10px 0;
            font-size: 13px;
            color: white;
        }

        .top-bar-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar-left a, .top-bar-right a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            transition: opacity 0.3s;
        }

        .top-bar-left a:hover, .top-bar-right a:hover {
            opacity: 0.8;
        }

        .navbar {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo i {
            font-size: 32px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 5px;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: white;
            text-decoration: none;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.3s;
            position: relative;
        }

        .nav-link:hover {
            background: rgba(255,255,255,0.15);
        }

        .nav-link i {
            font-size: 16px;
        }

        .dropdown-arrow {
            font-size: 12px;
            transition: transform 0.3s;
        }

        .nav-item:hover .dropdown-arrow {
            transform: rotate(180deg);
        }

        /* Mega Menu Styles */
        .mega-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            margin-top: 20px;
            min-width: 900px;
            max-width: 1200px;
        }

        .nav-item:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            margin-top: 10px;
        }

        .mega-menu-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            padding: 40px;
        }

        .mega-menu-column {
            position: relative;
        }

        .mega-menu-column h3 {
            color: #667eea;
            font-size: 16px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            padding-bottom: 12px;
            border-bottom: 2px solid #e8eaf6;
        }

        .mega-menu-column h3 i {
            font-size: 20px;
        }

        .mega-menu-links {
            list-style: none;
        }

        .mega-menu-links li {
            margin-bottom: 12px;
        }

        .mega-menu-links a {
            color: #4a5568;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.3s;
            font-size: 14px;
        }

        .mega-menu-links a:hover {
            background: #f7fafc;
            color: #667eea;
            transform: translateX(5px);
        }

        .mega-menu-links a i {
            color: #667eea;
            width: 20px;
            text-align: center;
        }

        /* Featured Box */
        .featured-box {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 25px;
            border-radius: 10px;
            color: white;
            margin-top: 10px;
        }

        .featured-box h4 {
            font-size: 15px;
            margin-bottom: 10px;
        }

        .featured-box p {
            font-size: 13px;
            opacity: 0.9;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .featured-box .btn {
            background: white;
            color: #667eea;
            padding: 8px 16px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s;
        }

        .featured-box .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Badge */
        .badge {
            background: #48bb78;
            color: white;
            font-size: 10px;
            padding: 3px 8px;
            border-radius: 12px;
            margin-left: 8px;
            font-weight: 600;
        }

        .badge.new {
            background: #ed8936;
        }

        /* User Menu */
        .user-menu-btn {
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            padding: 10px 20px;
            border-radius: 8px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            transition: all 0.3s;
        }

        .user-menu-btn:hover {
            background: rgba(255,255,255,0.3);
        }

        /* Simple Dropdown Menu */
        .simple-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            margin-top: 10px;
            min-width: 200px;
        }

        .nav-item:hover .simple-dropdown {
            opacity: 1;
            visibility: visible;
            margin-top: 5px;
        }

        .simple-dropdown a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            color: #4a5568;
            text-decoration: none;
            transition: all 0.3s;
            border-bottom: 1px solid #f0f0f0;
        }

        .simple-dropdown a:last-child {
            border-bottom: none;
        }

        .simple-dropdown a:hover {
            background: #f7fafc;
            color: #667eea;
        }

        .simple-dropdown i {
            color: #667eea;
            width: 20px;
        }

        /* Content Area */
        .content-area {
            max-width: 1400px;
            margin: 60px auto;
            padding: 0 30px;
        }

        .welcome-section {
            background: white;
            padding: 60px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            text-align: center;
        }

        .welcome-section h1 {
            color: #2d3748;
            font-size: 36px;
            margin-bottom: 20px;
        }

        .welcome-section p {
            color: #718096;
            font-size: 18px;
            line-height: 1.6;
        }

        /* Footer Styles */
        .footer {
            background: #1a202c;
            color: #a0aec0;
            margin-top: 80px;
        }

        .footer-top {
            padding: 60px 0 40px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .footer-top .footer-container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
            gap: 40px;
        }

        .footer-column h4 {
            color: white;
            font-size: 18px;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
        }

        .footer-column h4 i {
            color: #667eea;
            font-size: 20px;
        }

        /* Footer About */
        .footer-about .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .footer-about .footer-logo i {
            font-size: 32px;
            color: #667eea;
        }

        .footer-about .footer-logo h3 {
            color: white;
            font-size: 24px;
            margin: 0;
        }

        .footer-description {
            line-height: 1.8;
            margin-bottom: 25px;
            color: #cbd5e0;
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-bottom: 25px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: rgba(102, 126, 234, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #667eea;
            transition: all 0.3s;
            font-size: 16px;
        }

        .social-icon:hover {
            background: #667eea;
            color: white;
            transform: translateY(-3px);
        }

        .footer-certifications {
            display: flex;
            gap: 10px;
        }

        .footer-certifications img {
            width: 50px;
            height: 50px;
            border-radius: 5px;
        }

        /* Footer Links */
        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #a0aec0;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            font-size: 14px;
        }

        .footer-links a:hover {
            color: #667eea;
            padding-left: 5px;
        }

        .footer-links a i {
            font-size: 12px;
        }

        /* Footer Contact */
        .contact-info {
            list-style: none;
        }

        .contact-info li {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            align-items: flex-start;
        }

        .contact-info i {
            color: #667eea;
            font-size: 18px;
            margin-top: 2px;
            width: 20px;
        }

        .contact-info strong {
            display: block;
            color: white;
            margin-bottom: 5px;
            font-size: 14px;
        }

        .contact-info span {
            display: block;
            font-size: 13px;
            line-height: 1.6;
        }

        /* Newsletter Section */
        .footer-newsletter {
            background: linear-gradient(135deg, #667eea 0%, #0a2864 100%);
            padding: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .footer-newsletter::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.4;
        }

        .newsletter-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 50px;
            position: relative;
            z-index: 1;
        }

        .newsletter-text {
            display: flex;
            align-items: center;
            gap: 25px;
            color: white;
        }

        .newsletter-text i {
            font-size: 50px;
            opacity: 0.95;
            animation: float 3s ease-in-out infinite;
            filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .newsletter-text h4 {
            font-size: 26px;
            margin-bottom: 8px;
            font-weight: 700;
            text-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .newsletter-text p {
            font-size: 15px;
            opacity: 0.95;
            line-height: 1.6;
        }

        .newsletter-form {
            display: flex;
            gap: 0;
            min-width: 500px;
            background: white;
            border-radius: 1px;
            padding: 8px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            transition: all 0.3s;
			clip-path: polygon(7% 0%, 100% 0%, 96% 100%, 0% 100%);
        }
		


        .newsletter-form:focus-within {
            box-shadow: 0 15px 50px rgba(0,0,0,0.3);
            transform: translateY(-2px);
        }

        .newsletter-form input {
            flex: 1;
            padding: 16px 45px;
            border: none;
            background: transparent;
            font-size: 18px;
            outline: none;
            color: #2d3748;
        }

        .newsletter-form input::placeholder {
            color: #a0aec0;
        }

		.newsletter-form button {
			padding: 16px 35px;
			background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
			color: white;
			border: none;
			font-weight: 600;
			cursor: pointer;
			transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
			display: flex;
			align-items: center;
			gap: 10px;
			font-size: 15px;
			position: relative;
			overflow: hidden;
			clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
			box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
			margin-right: 3px;
		}

        .newsletter-form button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .newsletter-form button:hover::before {
            left: 100%;
        }

        .newsletter-form button:hover {
            transform: translateX(5px);
            box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
        }

        .newsletter-form button i {
            transition: transform 0.3s;
        }

        .newsletter-form button:hover i {
            transform: translateX(5px);
        }

        /* Footer Middle */
        .footer-middle {
            padding: 40px 0;
            background: #171f2d;
        }

        .footer-services {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .service-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: rgba(102, 126, 234, 0.05);
            border-radius: 10px;
            transition: all 0.3s;
        }

        .service-item:hover {
            background: rgba(102, 126, 234, 0.1);
            transform: translateY(-3px);
        }

        .service-item i {
            font-size: 32px;
            color: #667eea;
        }

        .service-item strong {
            display: block;
            color: white;
            font-size: 15px;
            margin-bottom: 3px;
        }

        .service-item span {
            display: block;
            font-size: 12px;
            color: #a0aec0;
        }

        /* Footer Bottom */
        .footer-bottom {
            padding: 25px 0;
            background: #0d1117;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .copyright p {
            color: #718096;
            font-size: 14px;
        }

        .payment-methods {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #718096;
            font-size: 14px;
        }

        .payment-methods i {
            font-size: 28px;
            color: #667eea;
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom-links a {
            color: #718096;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover {
            color: #667eea;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .footer-top .footer-container {
                grid-template-columns: repeat(3, 1fr);
            }

            .footer-about {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            .footer-top .footer-container {
                grid-template-columns: 1fr;
            }

            .newsletter-content {
                flex-direction: column;
                text-align: center;
            }

            .newsletter-form {
                min-width: 100%;
                flex-direction: column;
            }

            .footer-services {
                grid-template-columns: 1fr;
            }

            .footer-bottom-content {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }

		/* 🔹 Mobilde clip-path kaldır */
		@media (max-width: 768px) {
			.newsletter-form {
				min-width: 100%;
				flex-direction: column;
				clip-path: none;
				border-radius: 8px;
				padding: 10px;
			}
			.newsletter-form input {
				width: 100%;
				border-radius: 6px;
				margin-bottom: 8px;
			}
			.newsletter-form button {
				width: 100%;
				border-radius: 6px;
				clip-path: none;
			}
		}		
		
		
		
		

 /* === Hamburger Buton === */
.mobile-toggle {
  display: none;
  font-size: 1.6rem;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 992px) {
  .mobile-toggle { display: block; }
  .nav-menu, .user-menu-btn { display: none; }
}

/* === Mobil Menü === */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.98);
  z-index: 9999;
  padding: 25px 20px;
  animation: slideIn 0.4s ease forwards;
}
@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.mobile-logo {
  font-size: 1.4rem;
  color: #4F46E5;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-header i {
  font-size: 1.8rem;
  color: #4F46E5;
  cursor: pointer;
}

/* === Linkler === */
.mobile-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-links li {
  border-bottom: 1px solid #e5e7eb;
}
.mobile-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 4px;
  color: #111827;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}
.mobile-links a:hover {
  color: #4F46E5;
}

/* === Giriş Butonu === */
.mobile-login, .mobile-register {
  margin-top: 15px;
  background: linear-gradient(135deg, #4F46E5, #6D28D9);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}
.mobile-login:hover, .mobile-register:hover {
  background: linear-gradient(135deg, #4338CA, #5B21B6);
}		
		
		
		
		
		
		
		
		
		
/******* Slider Alanı *********/		
		
:root{
  --rehabis:#4F46E5; --rehabis-2:#6D28D9; --ink:#0f172a;
  --radius:20px; --shadow:0 20px 50px rgba(0,0,0,.18);
}
*{box-sizing:border-box;margin:0;padding:0}
body{font-family:system-ui,Segoe UI,Roboto,sans-serif;background:#f8fafc;color:var(--ink)}
.rehabis-slider{position:relative;width:100%;height:68vh;min-height:420px;overflow:hidden;border-radius:0 0 var(--radius) var(--radius)}
.rehabis-slider input[type=radio]{display:none}
.rehabis-slides{display:flex;width:400%;height:100%;transition:transform .8s cubic-bezier(.2,.7,.2,1)}
.rehabis-slide{width:25%;height:100%;position:relative}
.rehabis-slide img{width:100%;height:100%;object-fit:cover;filter:saturate(1.05)}
.rehabis-slide::after{content:"";position:absolute;inset:0;
background:linear-gradient(to right,rgba(9,10,15,.6),rgba(9,10,15,.25) 40%,rgba(9,10,15,0))}
.rehabis-caption{position:absolute;bottom:14%;left:8%;max-width:640px;z-index:2;color:#fff;
padding:24px 30px;border-radius:18px;background:linear-gradient(135deg,rgba(79,70,229,.88),rgba(109,40,217,.75));
box-shadow:var(--shadow)}
.rehabis-title{font-size:clamp(26px,4vw,44px);font-weight:800;margin-bottom:8px}
.rehabis-desc{font-size:clamp(14px,1.4vw,18px);margin-bottom:18px;color:#eef2ff}
.rehabis-actions{display:flex;gap:12px;flex-wrap:wrap}
.rehabis-btn{display:inline-flex;align-items:center;gap:8px;padding:12px 20px;font-weight:600;
border-radius:12px;text-decoration:none;transition:.25s}
.rehabis-btn--solid{background:#fff;color:var(--rehabis)}
.rehabis-btn--solid:hover{transform:translateY(-2px)}
.rehabis-btn--ghost{border:1px solid rgba(255,255,255,.4);color:#fff;background:rgba(255,255,255,.15)}
.rehabis-btn--ghost:hover{background:rgba(255,255,255,.25)}
.rehabis-dots{position:absolute;bottom:20px;left:50%;transform:translateX(-50%);
display:flex;gap:10px;z-index:3}
.rehabis-dots label{width:12px;height:12px;border-radius:50%;background:rgba(255,255,255,.6);cursor:pointer;transition:.25s}
.rehabis-dots label:hover{transform:scale(1.2)}
.rehabis-arrow{position:absolute;top:50%;transform:translateY(-50%);
width:46px;height:46px;border-radius:14px;background:rgba(255,255,255,.3);
display:grid;place-items:center;color:#fff;cursor:pointer;z-index:3;transition:.2s}
.rehabis-arrow:hover{background:rgba(255,255,255,0.7);transform:translateY(-50%) scale(1.05)}
.rehabis-arrow--prev{left:18px}
.rehabis-arrow--next{right:18px}
#slide-1:checked~.rehabis-slides{transform:translateX(0)}
#slide-2:checked~.rehabis-slides{transform:translateX(-25%)}
#slide-3:checked~.rehabis-slides{transform:translateX(-50%)}
#slide-4:checked~.rehabis-slides{transform:translateX(-75%)}
#slide-1:checked~.rehabis-dots label[for=slide-1],
#slide-2:checked~.rehabis-dots label[for=slide-2],
#slide-3:checked~.rehabis-dots label[for=slide-3],
#slide-4:checked~.rehabis-dots label[for=slide-4]{background:#fff;box-shadow:0 0 0 4px rgba(255,255,255,.25)}
@media(max-width:768px){.rehabis-caption{left:5%;right:5%;bottom:10%;padding:18px 16px}}

/************ Slider Alanı Biter *************/
		
/* === Öne Çıkan Merkezler === */
.featured-centers {
  background: #f8fafc;
  padding: 100px 20px;
  text-align: center;
}
.featured-centers .container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 3rem;
}
.center-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* Kart Tasarımı */
.center-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.center-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(79,70,229,0.25);
}

/* Görsel alanı */
.center-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.center-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.center-card:hover .center-image img {
  transform: scale(1.05);
}

/* Gradient Overlay */
.center-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 50%, rgba(0,0,0,0.55) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1rem;
}
.badge {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  padding: 5px 12px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

/* İçerik kısmı */
.center-content {
  flex: 1;
  padding: 1.5rem;
  text-align: left;
}
.center-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
.center-content p {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 1.2rem;
}

/* Butonlar */
.center-actions {
  display: flex;
  gap: 10px;
}
.btn {
  display: inline-block;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-primary {
  background: linear-gradient(135deg, #4F46E5, #6D28D9);
  color: #fff;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #6D28D9, #4F46E5);
  transform: translateY(-2px);
}
.btn-secondary {
  background: #f3f4f6;
  color: #111827;
}
.btn-secondary:hover {
  background: #e5e7eb;
}
@media (max-width: 768px) {
  .featured-centers { padding: 60px 15px; }
  .section-title { font-size: 1.8rem; }
}		
		
		
		
		
		
/******* Öne Çıkan  Eğitimciler **********/ 
.educator-section{
  background:#f9fafb;padding:20px 0;text-align:center;overflow:hidden
}
.educator-section .container{max-width:1250px;margin:0 auto;padding:0 20px}
.section-title{font-size:2.2rem;font-weight:700;color:#1f2937;margin-bottom:.5rem}
.section-subtitle{color:#6b7280;font-size:1rem;margin-bottom:3rem}

/* === SLIDER === */
.educator-slider{position:relative;overflow:hidden}
.educator-track{
  display:flex;gap:2rem;width:max-content;
  will-change:transform;
}
.educator-card{
  flex:0 0 260px;
  background:#fff;border-radius:24px;
  padding:2rem 1.4rem;box-shadow:0 6px 18px rgba(0,0,0,0.08);
  text-align:center;transition:.4s;
}
.educator-card:hover{transform:translateY(-6px);box-shadow:0 12px 35px rgba(79,70,229,0.25)}
.educator-card img{
  width:120px;height:120px;object-fit:cover;border-radius:50%;margin-bottom:1rem;
  border:4px solid transparent;
  background-image:linear-gradient(white,white),linear-gradient(135deg,#4F46E5,#6D28D9);
  background-origin:border-box;background-clip:content-box,border-box;
}
.educator-card h3{font-size:1.05rem;font-weight:700;color:#111827;margin-bottom:.3rem}
.educator-card p{font-size:.9rem;color:#6b7280;margin:0}

/* === OKLAR === */
.nav-arrow{
  position:absolute;top:50%;transform:translateY(-50%);
  background:rgba(255,255,255,0.9);border:none;width:42px;height:42px;
  border-radius:50%;color:#4F46E5;font-size:18px;cursor:pointer;
  box-shadow:0 2px 6px rgba(0,0,0,0.1);z-index:2;transition:.3s;
}
.nav-arrow:hover{background:#4F46E5;color:#fff}
.nav-arrow.prev{left:10px}
.nav-arrow.next{right:10px}

@media(max-width:768px){
  .educator-card{flex:0 0 200px;padding:1.5rem}
  .educator-card img{width:100px;height:100px}
  .nav-arrow{display:none}
}		
		












/* === BLOG SECTION === */
.blog-section {
  background: #f9fafb;
  padding: 20px 20px;
  text-align: center;
}
.blog-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.4rem;
}
.section-subtitle {
  color: #6b7280;
  margin-bottom: 3rem;
  font-size: 1rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

/* === BLOG CARD === */
.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(79,70,229,0.25);
}

/* === IMAGE & CATEGORY === */
.blog-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-image img {
  transform: scale(1.08);
}
.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg,#4F46E5,#6D28D9);
  color: #fff;
  padding: 6px 14px;
  font-size: 0.8rem;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* === CONTENT === */
.blog-content {
  padding: 1.8rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.8rem;
}
.blog-meta i {
  color: #4F46E5;
  margin-right: 4px;
}
.blog-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}
.blog-excerpt {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}
.read-more {
  align-self: flex-start;
  color: #4F46E5;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}
.read-more i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}
.read-more:hover {
  color: #312E81;
}
.read-more:hover i {
  transform: translateX(4px);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .blog-section { padding: 70px 15px; }
  .section-title { font-size: 1.8rem; }
  .blog-meta { font-size: 0.8rem; }
  .blog-excerpt { font-size: 0.9rem; }
}		
		
		
		
		
		
		
		
		
		
		
		
		
/* === İSTATİSTİK BÖLÜMÜ === */
.stats-section {
  background: #f9fafb;
  padding: 100px 20px;
  text-align: center;
}
.stats-section .container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  color: #6b7280;
  margin-bottom: 3rem;
  font-size: 1rem;
}

/* === GRID === */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
}
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* === KART === */
.stat-card {
  background: var(--card-color);
  border-radius: 18px;
  padding: 40px 25px;
  width: 100%;
  max-width: 320px;
  box-shadow: inset 3px 3px 6px rgba(0,0,0,0.05),
              inset -3px -3px 6px rgba(255,255,255,0.5);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* === İKON === */
.icon {
  font-size: 2rem;
  color: #374151;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.3);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === SAYI === */
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.4rem;
}

/* === ETİKET === */
.stat-label {
  font-size: 1rem;
  color: #374151;
  font-weight: 500;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .stat-card { padding: 30px 20px; }
  .stat-number { font-size: 2.2rem; }
}	
		
		
		






/*************** GİRİŞ MODALI ****************/		

/* === GENEL === */
.user-menu-btn {
  background: linear-gradient(135deg, #368581, #236f6b);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px 26px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
}
.user-menu-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(99,102,241,0.3);
}


.user-reg-btn {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 12px 26px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
}
.user-reg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(99,102,241,0.3);
  background: rgba(255,255,255,0.3);
}


/* === Genel Menü Yapısı === */
.user-menu {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* === Giriş Durumuna Göre Renkler === */
.user-btn.login {
  background: linear-gradient(135deg, #4f46e5, #6d28d9);
  color: #fff;
  box-shadow: 0 3px 10px rgba(79,70,229,0.25);
}
.user-btn.login:hover {
  background: linear-gradient(135deg, #4338ca, #5b21b6);
}

.user-btn.register {
  background: white;
  color: #4f46e5;
 }
.user-btn.register:hover {
  background: #4f46e5;
  color: #fff;
}

.user-btn.account {
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  box-shadow: 0 3px 10px rgba(5,150,105,0.25);
}
.user-btn.account:hover {
  background: linear-gradient(135deg, #047857, #059669);
}

.user-btn.logout {
  background: #f9fafb;
  color: #ef4444;
 }
.user-btn.logout:hover {
  background: #ef4444;
  color: #fff;
}

/* === Simge ayarları === */
.user-btn i {
  font-size: 15px;
  transition: transform 0.3s;
}
.user-btn:hover i {
  transform: scale(1.1);
}

/* === Responsive düzen === */
@media (max-width: 768px) {
  .user-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .user-btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
  }
}



/* === MODAL OVERLAY === */
.rehabis-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.rehabis-modal.active {
  display: flex;
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* === MODAL İÇERİK === */
.rehabis-modal-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 850px;
  width: 90%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  animation: slideUp 0.5s ease;
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* === SOL TARAF === */
.modal-left {
  flex: 1;
  min-width: 300px;
  /*background: url('assets/img/bg-login.jpg') center/cover no-repeat;*/
  position: relative;
  color: white;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.modal-left .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79,70,229,0.85), rgba(109,40,217,0.75));
  backdrop-filter: blur(3px);
}
.modal-left .brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  gap: 10px;
}
.modal-left .brand i {
  font-size: 2.4rem;
}
.modal-left p {
  position: relative;
  z-index: 2;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  line-height: 1.5;
  opacity: 0.95;
}

/* === SAĞ TARAF === */
.modal-right {
  flex: 1;
  background: rgba(255,255,255,0.97);
  padding: 50px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.close-modal {
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 26px;
  cursor: pointer;
  color: #6b7280;
  transition: 0.3s;
}
.close-modal:hover {
  color: #4F46E5;
}
.modal-right h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.4rem;
}
.modal-right .subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

/* === FORM === */
.login-form .form-group {
  display: flex;
  align-items: center;
  /*background: #f3f4f6;*/
  border-radius: 12px;
  /*padding: 12px 16px;
  margin-bottom: 18px;*/
  transition: all 0.3s ease;
}
.login-form .form-group:focus-within {
	background: #edffec;
    box-shadow: 0 0 0 1px rgb(28 133 32 / 20%);
}
.login-form .form-group i {
  color: #4F46E5;
  font-size: 1.1rem;
  margin-right: 10px;
}
.login-form input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 1rem;
  color: #111827;
}

/* === GİRİŞ BUTONU === */
.login-btn {
  margin-top: 10px;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.login-btn:hover {
  background: linear-gradient(135deg, #4f46e5, #6d28d9);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99,102,241,0.3);
}

/* === ALT LİNKLER === */
.form-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  font-size: 0.9rem;
}
.form-footer a {
  color: #4F46E5;
  text-decoration: none;
  transition: color 0.3s;
}
.form-footer a:hover {
  color: #312E81;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .rehabis-modal-content {
    flex-direction: column;
    max-width: 90%;
  }
  .modal-left {
    min-height: 180px;
    text-align: center;
  }
  .modal-right {
    padding: 40px 25px;
  }
}


.alertify-notifier .ajs-message.ajs-success {
  background: linear-gradient(135deg, #4f46e5, #6d28d9);
  color: #fff;
  box-shadow: 0 4px 15px rgba(79,70,229,0.35);
}
.alertify-notifier .ajs-message.ajs-error {
  background: #ef4444;
  color: #fff;
}
.alertify-notifier .ajs-message.ajs-warning {
  background: #f59e0b;
  color: #db5121;
}

/* 🔹 Alertify en üstte kalsın */
.alertify, .alertify-logs {
  z-index: 99999 !important;
}

.alertify-notifier {
  z-index: 99999 !important;
}

/* (isteğe bağlı) arka plan kararmasını da diğer modal üstüne çıkarır */
.alertify-cover {
  z-index: 99998 !important;
}

/************* sosyal giriş *************/
         /* ==================== MODAL STILLERI ==================== */
        .rehabis-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            z-index: 999;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .rehabis-modal.active {
            display: flex;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .rehabis-modal-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: white;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            width: 90%;
            max-width: 900px;
            animation: slideUp 0.3s ease;
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Modal Sol Taraf */
        .modal-left {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 50px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .modal-left::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .modal-left .overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.2);
        }

        .brand {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            font-size: 32px;
            font-weight: bold;
        }

        .brand i {
            font-size: 40px;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .modal-left p {
            position: relative;
            z-index: 1;
            font-size: 16px;
            line-height: 1.6;
            opacity: 0.95;
        }

        /* Modal Sağ Taraf */
        .modal-right {
            padding: 40px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .close-modal {
            position: absolute;
            top: 20px;
            right: 25px;
            font-size: 32px;
            cursor: pointer;
            color: #999;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-modal:hover {
            color: #333;
            background: #f0f0f0;
            border-radius: 50%;
        }

        .modal-right h2 {
            font-size: 28px;
            color: #1a1a1a;
            margin-bottom: 10px;
        }

        .subtitle {
            color: #666;
            margin-bottom: 30px;
            font-size: 14px;
        }

        /* Form Stilleri */
        .login-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .form-group {
            position: relative;
            display: flex;
            align-items: center;
        }

        .form-group i {
            position: absolute;
            left: 15px;
            color: #667eea;
            font-size: 18px;
        }

        .form-group input {
            width: 100%;
            padding: 14px 15px 14px 45px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 14px;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-group input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .form-group input::placeholder {
            color: #999;
        }

        .g-recaptcha {
            margin: 15px 0 !important;
        }

        .remember-me {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 10px 0 20px 0;
            cursor: pointer;
        }

        .remember-me input {
            width: 18px;
            height: 18px;
            cursor: pointer;
            accent-color: #667eea;
        }

        .remember-me label {
            font-size: 14px;
            color: #64748b;
            cursor: pointer;
            margin: 0;
        }

        /* Buton Stilleri */
        .btn-group {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .login-btn {
            padding: 14px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .login-btn:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        }

        .login-btn:disabled {
            opacity: 0.8;
            cursor: not-allowed;
        }

        .social-login-btn {
            padding: 14px;
            background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(240, 148, 51, 0.3);
        }

        .social-login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(240, 148, 51, 0.4);
        }

        /* Sosyal Giriş Butonları */
        .social-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 15px;
        }

        .social-btn {
            padding: 14px;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .social-btn:hover {
            transform: scale(1.05);
        }

        .social-btn i {
            font-size: 20px;
        }

        .facebook-btn {
            background: #1877f2;
            color: white;
            box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
        }

        .facebook-btn:hover {
            background: #166fe5;
            box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
        }

        .google-btn {
            background: white;
            color: #333;
            border: 2px solid #e0e0e0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .google-btn:hover {
            background: #f9f9f9;
            border-color: #d0d0d0;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .google-btn i {
            color: #ea4335;
        }

        .instagram-btn {
            background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(240, 148, 51, 0.3);
        }

        .instagram-btn:hover {
            filter: brightness(1.1);
            box-shadow: 0 6px 20px rgba(240, 148, 51, 0.4);
        }

        /* Form Footer */
        .form-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
            font-size: 13px;
        }

        .form-footer a {
            color: #667eea;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .form-footer a:hover {
            color: #764ba2;
            text-decoration: underline;
        }

        .form-footer a.forgot {
            color: #999;
        }

        /* Divider */
        .divider {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 15px 0;
            font-size: 12px;
            color: #999;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #e0e0e0;
        }

        /* Back Header */
        .back-header {
            display: none;
            align-items: center;
            margin-bottom: 25px;
            gap: 15px;
        }

        .back-header.active {
            display: flex;
        }

        .back-btn {
            width: 40px;
            height: 40px;
            background: #f0f0f0;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .back-btn:hover {
            background: #e0e0e0;
            transform: translateX(-3px);
        }

        .back-header h2 {
            flex: 1;
            font-size: 24px;
            color: #1a1a1a;
        }

        /* Spinner */
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .loading-spinner {
            display: inline-block;
            width: 22px;
            height: 22px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-top-color: white;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        /* Modal Alt Yazı */
        .footer-text {
            font-size: 11px;
            color: #999;
            text-align: center;
            line-height: 1.6;
            margin-top: 15px;
        }

        .footer-text a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
        }

        .footer-text a:hover {
            text-decoration: underline;
        }

        /* Gizle/Göster */
        .hidden {
            display: none !important;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .rehabis-modal-content {
                grid-template-columns: 1fr;
            }

            .modal-left {
                display: none;
            }

            .modal-right {
                padding: 30px 20px;
            }

            .modal-right h2 {
                font-size: 24px;
            }

            .form-footer {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        }
/************ sosyal giriş biter *****************/		




