/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo .logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-logo h2 {
    background: linear-gradient(135deg, #1e3a8a 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #1e3a8a;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #1e3a8a 0%, #d97706 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #fafaf9 0%, #f5f5f4 100%);
    overflow: hidden;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #1e3a8a 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #d97706 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
}

.btn-secondary:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-3px);
}

.hero-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.hero-logo {
    text-align: center;
    margin-bottom: 1rem;
}

.hero-logo-img {
    height: 260px;
    width: auto;
    object-fit: contain;
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}



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

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.1) 0%, rgba(42, 82, 152, 0.1) 100%);
    animation: move 20s infinite linear;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation-delay: -10s;
}

@keyframes move {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(100px, 100px) rotate(360deg); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    font-size: 1.5rem;
    color: #1e3a8a;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.feature p {
    color: #64748b;
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #64748b;
    font-weight: 500;
}

/* Teachers Section */
.teachers {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafaf9 0%, #f5f5f4 100%);
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.teacher-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

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

.teacher-info {
    padding: 0;
}

.teacher-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.teacher-title {
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 1rem;
}

.teacher-description {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.teacher-subjects {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.teacher-subjects span {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
    color: #1e3a8a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Courses Section */
.courses {
    padding: 100px 0;
    background: white;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.course-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

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

.course-card.featured {
    border-color: #1e3a8a;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #d97706 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.course-header {
    text-align: center;
    margin-bottom: 2rem;
}

.course-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}



.course-features {
    margin-bottom: 2rem;
}

.course-features ul {
    list-style: none;
}

.course-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
}

.course-features i {
    color: #1e3a8a;
    font-size: 0.9rem;
}

.course-card .btn {
    width: 100%;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafaf9 0%, #f5f5f4 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #1e3a8a;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-item p {
    color: #64748b;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* İletişim formu select kutusu için şık stil */
#contact .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: #1e293b;
}
#contact .form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    background: #f8fafc;
    color: #1e293b;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(30,58,138,0.04);
    margin-bottom: 8px;
    outline: none;
    appearance: none;
}
#contact .form-group select:focus, #contact .form-group select:hover {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px #3b82f633;
    background: #fff;
}
#contact .form-group option {
    color: #1e293b;
}

/* Modern Konu Seçiniz Barı */
#contact .form-group.select-modern {
    position: relative;
    margin-bottom: 18px;
}
#contact .form-group.select-modern label {
    font-size: 1.08rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 8px;
    display: block;
    letter-spacing: 0.5px;
}
#contact .form-group.select-modern .select-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #3b82f6;
    font-size: 1.2rem;
    pointer-events: none;
    z-index: 2;
}
#contact .form-group.select-modern select {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 2px solid #3b82f6;
    border-radius: 12px;
    background: #f1f5f9;
    color: #1e293b;
    font-size: 1.08rem;
    font-weight: 500;
    box-shadow: 0 4px 18px rgba(59,130,246,0.07);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
}
#contact .form-group.select-modern select:focus, #contact .form-group.select-modern select:hover {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px #2563eb33;
    background: #fff;
}
#contact .form-group.select-modern select option {
    color: #1e293b;
}
#contact .form-group.select-modern select:invalid {
    color: #94a3b8;
}
@media (max-width: 600px) {
    #contact .form-group.select-modern select {
        font-size: 1rem;
        padding-left: 38px;
    }
    #contact .form-group.select-modern .select-icon {
        left: 10px;
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #1e3a8a;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #1e3a8a;
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: #1e3a8a;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #1e3a8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #d97706;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-logo .logo-img {
        height: 35px;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    .hero-logo-img {
        height: 140px;
    }
    
    .footer-logo-img {
        height: 40px;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .teachers-grid {
        grid-template-columns: 1fr;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }


    
    .hero-logo-img {
        height: 120px;
    }
    
    .nav-logo .logo-img {
        height: 30px;
    }
    
    .footer-logo-img {
        height: 35px;
    }
}

/* Smooth scrolling and animations */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #1e3a8a 0%, #d97706 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #1e40af 0%, #b45309 100%);
} 

/* Yakında Bannerı */
.coming-soon-banner {
  background: linear-gradient(90deg, #fbbf24 0%, #3b82f6 100%);
  color: #fff;
  padding: 40px 0;
  text-align: center;
  margin: 40px 0 0 0;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(59,130,246,0.08);
}
.coming-soon-content h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}
.coming-soon-content p {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.soon-label {
  display: inline-block;
  background: #fff;
  color: #3b82f6;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 1rem;
  margin-top: 10px;
}

/* Yakında eklenecek öğretmen kartları */
.teacher-card.coming-soon {
  background: repeating-linear-gradient(135deg, #fbbf24 0 10px, #fff 10px 20px);
  opacity: 0.7;
  border: 2px dashed #3b82f6;
  box-shadow: 0 2px 12px rgba(59,130,246,0.06);
}
.teacher-card.coming-soon .teacher-title {
  color: #3b82f6;
  font-weight: bold;
} 

/* Ders Anlatım Teknikleri Bölümü */
.teaching-methods {
  background: #f8fafc;
  padding: 60px 0 40px 0;
}
.teaching-methods .section-header h2 {
  color: #1e3a8a;
  font-weight: 700;
}
.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 36px;
}
.method-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(30,58,138,0.07);
  padding: 32px 22px 26px 22px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.method-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(59,130,246,0.13);
}
.method-card i {
  font-size: 2.2rem;
  color: #3b82f6;
  margin-bottom: 14px;
}
.method-card h4 {
  font-size: 1.15rem;
  color: #1e293b;
  margin-bottom: 10px;
  font-weight: 600;
}
.method-card p {
  color: #64748b;
  font-size: 0.98rem;
} 

/* Modern Ekibimize Katıl Kartı */
.teacher-apply-hero {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 10px rgba(30,58,138,0.05);
  margin: 32px auto 28px auto;
  max-width: 350px;
  padding: 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.apply-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  min-height: unset;
  padding: 22px 16px 18px 16px;
}
.apply-hero-icon {
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  color: #3b82f6;
  border-radius: 50%;
  margin-bottom: 10px;
  box-shadow: none;
}
.apply-hero-text {
  flex: 1;
  padding: 0;
  color: #334155;
  text-align: center;
}
.apply-hero-text h2 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 7px;
  letter-spacing: 0.1px;
  color: #1e3a8a;
}
.apply-hero-text p {
  font-size: 0.93rem;
  font-weight: 400;
  margin-bottom: 13px;
  line-height: 1.5;
  color: #64748b;
}
.apply-hero-text strong {
  color: #3b82f6;
  font-weight: 500;
}
.apply-hero-btn {
  background: #f8fafc;
  color: #1e3a8a;
  font-weight: 500;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  padding: 9px 22px;
  font-size: 0.98rem;
  cursor: pointer;
  box-shadow: none;
  transition: background 0.15s, color 0.15s, border 0.15s, transform 0.12s;
}
.apply-hero-btn:hover {
  background: #3b82f6;
  color: #fff;
  border-color: #1e3a8a;
  transform: scale(1.03);
}
@media (max-width: 800px) {
  .teacher-apply-hero {
    border-radius: 18px;
  }
  .apply-hero-content {
    flex-direction: column;
    min-height: unset;
  }
  .apply-hero-icon {
    width: 100%;
    min-height: 120px;
    font-size: 3rem;
    border-radius: 18px 18px 0 0;
  }
  .apply-hero-text {
    padding: 24px 16px 24px 16px;
  }
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(30,41,59,0.25);
  overflow: auto;
}
.modal-content {
  background: #fff;
  margin: 60px auto;
  padding: 36px 28px 28px 28px;
  border-radius: 16px;
  max-width: 420px;
  box-shadow: 0 8px 32px rgba(30,58,138,0.18);
  position: relative;
  animation: modalIn 0.25s;
}
@keyframes modalIn {
  from { transform: translateY(-40px) scale(0.98); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.close {
  position: absolute;
  right: 18px;
  top: 18px;
  font-size: 2rem;
  color: #64748b;
  cursor: pointer;
  transition: color 0.2s;
}
.close:hover { color: #3b82f6; }
.application-form .form-group {
  margin-bottom: 18px;
}
.application-form label {
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 6px;
  display: block;
}
.application-form input, .application-form textarea {
  width: 100%;
  padding: 12px 10px;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  font-size: 1rem;
  margin-top: 2px;
  background: #f8fafc;
  color: #1e293b;
  outline: none;
  transition: border-color 0.2s;
}
.application-form input:focus, .application-form textarea:focus {
  border-color: #3b82f6;
  background: #fff;
}
.application-form button {
  width: 100%;
  background: #3b82f6;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 14px 0;
  font-size: 1.08rem;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}
.application-form button:hover {
  background: #1e3a8a;
} 

/* Başvuru Modalı (Zarif ve Sade) */
#teacherModal .modal-content {
  background: #f8fafc;
  margin: 60px auto;
  padding: 28px 20px 20px 20px;
  border-radius: 18px;
  max-width: 370px;
  box-shadow: 0 2px 16px rgba(30,58,138,0.08);
  position: relative;
  animation: modalIn 0.22s;
  border: 1.5px solid #e0e7ef;
}
#teacherModal h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 18px;
  text-align: center;
  letter-spacing: 0.5px;
}
#teacherModal .form-group label {
  color: #334155;
  font-size: 0.98rem;
  font-weight: 500;
  margin-bottom: 4px;
}
#teacherModal .form-group input,
#teacherModal .form-group textarea {
  background: #f1f5f9;
  border: 1.2px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.98rem;
  padding: 10px 8px;
  margin-top: 2px;
  color: #1e293b;
  transition: border-color 0.2s;
}
#teacherModal .form-group input:focus,
#teacherModal .form-group textarea:focus {
  border-color: #3b82f6;
  background: #fff;
}
#teacherModal .form-group textarea {
  min-height: 80px;
  resize: vertical;
}
#teacherModal .form-group {
  margin-bottom: 13px;
}
#teacherModal button[type="submit"] {
  width: 100%;
  background: linear-gradient(90deg, #3b82f6 0%, #1e3a8a 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  font-size: 1.05rem;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 1px 6px rgba(30,58,138,0.07);
  transition: background 0.18s, transform 0.13s;
}
#teacherModal button[type="submit"]:hover {
  background: #1e3a8a;
  color: #fff;
  transform: scale(1.03);
}
#teacherModal .close {
  position: absolute;
  right: 14px;
  top: 14px;
  font-size: 1.5rem;
  color: #64748b;
  cursor: pointer;
  transition: color 0.18s;
}
#teacherModal .close:hover { color: #3b82f6; }

/* Başvuru butonu daha zarif */
.apply-hero-btn {
  background: #f8fafc;
  color: #1e3a8a;
  font-weight: 600;
  border: 1.5px solid #3b82f6;
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(30,58,138,0.07);
  transition: background 0.18s, color 0.18s, border 0.18s, transform 0.13s;
}
.apply-hero-btn:hover {
  background: #3b82f6;
  color: #fff;
  border-color: #1e3a8a;
  transform: scale(1.04);
} 