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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

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

.btn-secondary:hover {
    background: #e74c3c;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #e74c3c;
    border: 2px solid #e74c3c;
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: #e74c3c;
    color: white;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(231, 76, 60, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    width: 100%;
}

.header-top {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 8px 0;
    font-size: 0.85rem;
    color: white;
    width: 100%;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 40px;
}

/* Header Contact Info */
.header-top .contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.contact-info span {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    font-size: 0.85rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.95);
}

.social-links a {
    color: rgba(255, 255, 255, 0.85);
    margin-left: 25px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    color: white;
    transform: translateY(-2px);
}

.header-main {
    padding: 20px 0;
    background: white;
    width: 100%;
    border-bottom: 1px solid rgba(231, 76, 60, 0.1);
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    padding: 0 40px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo a {
    display: block;
}

.logo img {
    height: 75px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 15px 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: #e74c3c;
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

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

.header-buttons {
    display: flex;
    gap: 25px;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: #e74c3c;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    margin-top: 120px;
    position: relative;
    height: 90vh;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active img {
    filter: brightness(1) contrast(1);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: left;
    color: white;
    z-index: 2;
    padding: 40px 120px;
}

@keyframes slideContentFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.slide-content h1 {
    animation: titleSlideIn 1.2s ease-out 0.5s both;
}

.slide-content p {
    animation: subtitleSlideIn 1.2s ease-out 0.8s both;
}

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

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

.slide-content::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: -1;
    border-radius: 20px;
}

.slide-content h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
    letter-spacing: -0.01em;
    font-family: 'Outfit', sans-serif;
    color: white;
    text-transform: uppercase;
    position: relative;
}

.slide-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c 0%, #f39c12 100%);
    border-radius: 2px;
}

.slide-content p {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    font-weight: 500;
    line-height: 1.5;
    max-width: 650px;
    color: white;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 3;
}

.prev-btn, .next-btn {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 18px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.prev-btn {
    left: 60px;
}

.next-btn {
    right: 60px;
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Education Levels */
.education-levels {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
}

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

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

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

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

.level-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.level-icon i {
    font-size: 2rem;
    color: white;
}

.level-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.level-card p {
    margin-bottom: 20px;
    color: #666;
}

/* About Section */
.about {
    padding: 80px 0;
}

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

.about-text h2 {
    margin-bottom: 30px;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #666;
}

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

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 10px;
}

.stat-item p {
    color: #666;
    margin: 0;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
}

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

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

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

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

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Photo Gallery Section */
.photo-gallery {
    padding: 80px 0;
    background: white;
}

.gallery-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-slider {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
}

.gallery-slide.active {
    opacity: 1;
    transform: scale(1);
}

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

.gallery-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 3;
}

.gallery-prev-btn, .gallery-next-btn {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #e74c3c;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.gallery-prev-btn {
    left: -25px;
}

.gallery-next-btn {
    right: -25px;
}

.gallery-prev-btn:hover, .gallery-next-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-dots {
    position: absolute;
    bottom: -40px;
    left: 50%;
    touch-action: pan-y;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-dot:hover {
    background: rgba(231, 76, 60, 0.6);
    transform: scale(1.2);
}

.gallery-dot.active {
    background: #e74c3c;
    background: #e74c3c;
    border-color: #e74c3c;
    box-shadow: 0 0 20px rgba(231, 76, 60, 0.5);
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Contact Section Contact Info */
.contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-item h4 {
    margin-bottom: 10px;
    color: #333;
}

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

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

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-weight: 400;
}

/* Modern Select Styling */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23e74c3c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 50px;
    cursor: pointer;
    position: relative;
}

.form-group select:hover {
    border-color: #d1d5db;
    background-color: #f9fafb;
}

.form-group select:focus {
    background-color: white;
}

.form-group select option {
    padding: 15px 20px;
    font-size: 1rem;
    color: #333;
    background: white;
    border: none;
    cursor: pointer;
}

.form-group select option:hover {
    background-color: #f8f9fa;
}

.form-group select option:checked {
    background-color: #e74c3c;
    color: white;
}

.form-group select option:selected {
    background-color: #e74c3c;
    color: white;
}

/* Form Message Styles */
.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

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

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

.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

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

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

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

.footer-section ul li a:hover {
    color: white;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    min-width: 220px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 15px 0;
    border: 1px solid rgba(231, 76, 60, 0.1);
}

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

.dropdown-menu li {
    list-style: none;
    border-bottom: 1px solid rgba(231, 76, 60, 0.1);
}

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

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: normal;
}

.dropdown-menu a:hover {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    transform: none;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown i {
    margin-left: 8px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover i {
    transform: rotate(180deg);
}

/* Mobile Menu */
.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(231, 76, 60, 0.15);
    padding: 30px;
    gap: 0;
    border-top: 3px solid #e74c3c;
}

.nav-menu.active li {
    border-bottom: 1px solid rgba(231, 76, 60, 0.1);
    margin-bottom: 5px;
}

.nav-menu.active li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.nav-menu.active a {
    padding: 20px 15px;
    font-size: 1.1rem;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu.active a:hover {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    transform: none;
    border-radius: 8px;
}

.nav-menu.active a::after {
    display: none;
}

/* Mobil menü dropdown stilleri */
.nav-menu.active .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
    margin: 0;
    padding: 0;
}

.nav-menu.active .dropdown.active .dropdown-menu {
    display: flex;
    opacity: 1;
    visibility: visible;
    max-height: none;
    padding: 15px 0;
    background: rgba(231, 76, 60, 0.05);
    border-radius: 8px;
    margin: 10px 0;
    border: 1px solid rgba(231, 76, 60, 0.1);
    box-shadow: inset 0 2px 4px rgba(231, 76, 60, 0.05);
    width: 100%;
    text-align: center;
    position: static;
    left: auto;
    right: auto;
    transform: none;
    top: auto;
    bottom: auto;
    z-index: auto;
    overflow: visible;
    clear: both;
    float: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-sizing: border-box;
    min-width: 100%;
    max-width: 100%;
    word-wrap: break-word;
    white-space: normal;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    order: 1;
    -o-hyphens: auto;
    pointer-events: auto;
    user-select: auto;
}

.nav-menu.active .dropdown a {
    position: relative;
    text-align: center;
    justify-content: space-between;
    padding: 20px 15px;
    width: 100%;
    margin: 0;
}

.nav-menu.active .dropdown a span {
    flex: 1;
    text-align: center;
    margin-right: 0;
    padding: 0 10px;
}

.nav-menu.active .dropdown a i {
    transition: transform 0.3s ease;
    margin-left: 0;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    color: #e74c3c;
    padding-right: 10px;
}

.nav-menu.active .dropdown.active a i {
    transform: rotate(180deg);
}

/* Mobil menü butonları */
.nav-menu.active .mobile-buttons {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(231, 76, 60, 0.1);
}

.nav-menu.active .mobile-buttons .btn {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
}

/* Desktop'ta mobil butonları gizle */
.mobile-buttons {
    display: none;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
    background: #c0392b;
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
    background: #c0392b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top .container,
    .header-main .container {
        padding: 0 20px;
    }
    
    .header-top .contact-info {
        gap: 15px;
        flex-direction: row;
    }
    
    .header-top .contact-info span {
        font-size: 0.8rem;
    }
    
    /* Mobil görünümde sosyal medya ikonlarını gizle */
    .header-top .social-links {
        display: none;
    }
    
    .contact .contact-info {
        gap: 20px;
    }
    
    .header-main .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
        position: relative;
    }
    
    .nav-menu {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        margin: 0;
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        text-align: center;
        width: 100%;
    }
    
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: none;
    }
    
    .dropdown-menu li {
        border-bottom: none;
    }
    
    .dropdown-menu a {
        padding: 15px 20px;
        font-size: 1rem;
        color: rgba(231, 76, 60, 0.8);
        pointer-events: auto;
        text-align: center;
        display: block;
        width: 100%;
        margin: 5px 0;
        border-radius: 8px;
        border-bottom: 1px solid rgba(231, 76, 60, 0.1);
    }
    
    .dropdown-menu a:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
    
    .dropdown-menu a:hover {
        background: rgba(231, 76, 60, 0.1);
        color: #e74c3c;
        border-radius: 8px;
        transform: translateX(0);
    }
    
    .dropdown > a {
        pointer-events: auto;
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        position: relative;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 0;
        width: 100%;
        text-decoration: none;
        color: inherit;
        font-weight: 500;
        transition: all 0.3s ease;
        border-radius: 8px;
        margin: 0;
        background: transparent;
        border: none;
        outline: none;
        box-shadow: none;
        font-size: 1.1rem;
        text-align: center;
        min-height: 60px;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        flex-shrink: 0;
        word-wrap: break-word;
        hyphens: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        will-change: transform;
        backface-visibility: hidden;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        filter: blur(0);
        -webkit-filter: blur(0);
        -moz-filter: blur(0);
        -ms-filter: blur(0);
    }
    
    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        top: 0;
        right: 0;
    }
    
    .header-buttons {
        display: none;
    }
    
    .logo img {
        height: 60px;
    }
    
    .hero {
        margin-top: 200px;
        height: 60vh;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .levels-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .prev-btn,
    .next-btn {
        padding: 10px;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        height: 50vh;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .level-card,
    .feature-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* About Page Styles */
.page-header {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 120px;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: white;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb .separator {
    color: white;
}

.breadcrumb .current {
    color: white;
    font-weight: 600;
}

.about-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-hero-text .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #e74c3c;
    font-weight: 500;
}

.about-hero-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

.about-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(231, 76, 60, 0.2);
    transition: transform 0.3s ease;
}

.about-hero-image img:hover {
    transform: translateY(-10px);
}

.mission-vision {
    padding: 80px 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card,
.vision-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.card-icon i {
    font-size: 2.2rem;
    color: white;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.mission-card p,
.vision-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

.values {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
}

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

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

.value-item:hover {
    transform: translateY(-8px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 1.8rem;
    color: white;
}

.value-item h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.history {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 30px;
    flex: 1;
    max-width: 300px;
}

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
}

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

.stat-card {
    background: white;
    padding: 40px 30px;
    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(-8px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 15px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.team {
    padding: 80px 0;
}

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

.team-member {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.member-photo i {
    font-size: 2.5rem;
    color: white;
}

.team-member h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.team-member .position {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member .description {
    color: #666;
    line-height: 1.6;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn-outline {
    color: white;
    border-color: white;
}

    .cta-buttons .btn-outline:hover {
        background: white;
        color: #e74c3c;
    }
    
    /* Mission Vision Page Styles */
    .mission-vision-hero {
        padding: 80px 0;
        background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
    }
    
    .mission-vision-content {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .intro-section h2 {
        font-size: 2.5rem;
        margin-bottom: 30px;
        color: #e74c3c;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    
    .intro-text {
        font-size: 1.2rem;
        line-height: 1.8;
        color: #666;
        font-weight: 500;
    }
    
    .mission-section,
    .vision-section {
        padding: 80px 0;
    }
    
    .mission-section {
        background: white;
    }
    
    .vision-section {
        background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
    }
    
    .mission-content,
    .vision-content {
        max-width: 900px;
        margin: 0 auto;
    }
    
    .mission-card-large,
    .vision-card-large {
        background: white;
        padding: 60px 50px;
        border-radius: 25px;
        box-shadow: 0 20px 50px rgba(231, 76, 60, 0.15);
        text-align: center;
        transition: transform 0.3s ease;
    }
    
    .mission-card-large:hover,
    .vision-card-large:hover {
        transform: translateY(-10px);
    }
    
    .card-header {
        margin-bottom: 40px;
    }
    
    .card-header .card-icon {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
    }
    
    .card-header .card-icon i {
        font-size: 2.5rem;
        color: white;
    }
    
    .card-header h3 {
        font-size: 2.2rem;
        color: #2c3e50;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .card-body p {
        font-size: 1.2rem;
        line-height: 1.8;
        color: #666;
        font-weight: 500;
    }
    
    .key-features {
        padding: 80px 0;
        background: white;
    }
    
    .key-features .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }
    
    .key-features .feature-item {
        background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
        padding: 40px 30px;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 15px 40px rgba(231, 76, 60, 0.1);
        transition: transform 0.3s ease;
        border: 2px solid transparent;
    }
    
    .key-features .feature-item:hover {
        transform: translateY(-8px);
        border-color: rgba(231, 76, 60, 0.2);
    }
    
    .key-features .feature-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
    }
    
    .key-features .feature-icon i {
        font-size: 2rem;
        color: white;
    }
    
    .key-features .feature-item h4 {
        font-size: 1.4rem;
        margin-bottom: 15px;
        color: #2c3e50;
        font-weight: 600;
    }
    
    .key-features .feature-item p {
        color: #666;
        line-height: 1.6;
        font-size: 1rem;
    }
    
    /* Responsive Design for About Page */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header {
        margin-top: 200px;
        padding: 80px 0 60px;
    }
    
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-hero-text h2 {
        font-size: 2.2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
    }
    
    .timeline-content {
        margin: 20px 0 0 50px;
        max-width: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Mission Vision Page Responsive */
    .intro-section h2 {
        font-size: 2rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
    
    .mission-card-large,
    .vision-card-large {
        padding: 40px 30px;
    }
    
    .card-header h3 {
        font-size: 1.8rem;
    }
    
    .card-body p {
        font-size: 1.1rem;
    }
    
         .key-features .features-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }
     
     /* Preschool Page Responsive */
     .preschool-hero-content {
         grid-template-columns: 1fr;
         gap: 40px;
     }
     
     .preschool-hero-text h2 {
         font-size: 2.2rem;
     }
     
     .preschool-icon {
         width: 150px;
         height: 150px;
     }
     
     .preschool-icon i {
         font-size: 3rem;
     }
     
     .benefits-content {
         grid-template-columns: 1fr;
         gap: 40px;
     }
     
     .benefits-text h2 {
         font-size: 2rem;
     }
     
     .preschool-features .features-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }
 }
 
 /* Preschool Page Styles */
 .preschool-hero {
     padding: 80px 0;
     background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
 }
 
 .preschool-hero-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
 }
 
 .preschool-hero-text h2 {
     font-size: 2.8rem;
     margin-bottom: 25px;
     color: #2c3e50;
 }
 
 .preschool-hero-text .lead {
     font-size: 1.2rem;
     line-height: 1.8;
     margin-bottom: 25px;
     color: #e74c3c;
     font-weight: 500;
 }
 
 .preschool-hero-text p {
     font-size: 1.1rem;
     line-height: 1.7;
     color: #666;
 }
 
 .preschool-hero-image {
     display: flex;
     justify-content: center;
     align-items: center;
 }
 
 .preschool-icon {
     width: 200px;
     height: 200px;
     background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 25px 50px rgba(231, 76, 60, 0.3);
 }
 
 .preschool-icon i {
     font-size: 4rem;
     color: white;
 }
 
 .preschool-features {
     padding: 80px 0;
     background: white;
 }
 
 .preschool-features .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
     margin-top: 50px;
 }
 
 .preschool-features .feature-item {
     background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
     padding: 40px 30px;
     border-radius: 20px;
     text-align: center;
     box-shadow: 0 15px 40px rgba(231, 76, 60, 0.1);
     transition: transform 0.3s ease;
     border: 2px solid transparent;
 }
 
 .preschool-features .feature-item:hover {
     transform: translateY(-8px);
     border-color: rgba(231, 76, 60, 0.2);
 }
 
 .preschool-features .feature-icon {
     margin-bottom: 25px;
 }
 
 .preschool-features .emoji {
     font-size: 3rem;
     display: block;
 }
 
 .preschool-features .feature-item h4 {
     font-size: 1.4rem;
     margin-bottom: 15px;
     color: #2c3e50;
     font-weight: 600;
 }
 
 .preschool-features .feature-item p {
     color: #666;
     line-height: 1.6;
     font-size: 1rem;
 }
 
 .preschool-benefits {
     padding: 80px 0;
     background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
 }
 
 .benefits-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
 }
 
 .benefits-text h2 {
     font-size: 2.5rem;
     margin-bottom: 25px;
     color: #2c3e50;
 }
 
 .benefits-description {
     font-size: 1.2rem;
     line-height: 1.8;
     margin-bottom: 40px;
     color: #666;
     font-weight: 500;
 }
 
 .benefits-list {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }
 
 .benefit-item {
     display: flex;
     align-items: center;
     gap: 20px;
     padding: 15px 20px;
     background: white;
     border-radius: 15px;
     box-shadow: 0 10px 30px rgba(231, 76, 60, 0.1);
     transition: transform 0.3s ease;
 }
 
 .benefit-item:hover {
     transform: translateX(10px);
 }
 
 .benefit-item i {
     width: 50px;
     height: 50px;
     background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.2rem;
 }
 
 .benefit-item span {
     font-size: 1.1rem;
     color: #2c3e50;
     font-weight: 500;
 }
 
 .benefits-image {
     display: flex;
     justify-content: center;
     align-items: center;
 }
 
 .benefits-icon {
     width: 150px;
     height: 150px;
     background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 20px 40px rgba(231, 76, 60, 0.2);
 }
 
 .benefits-icon i {
     font-size: 3rem;
     color: white;
 }
 
 .vision-statement {
     padding: 80px 0;
     background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
     color: white;
     text-align: center;
 }
 
 .vision-content h2 {
     font-size: 2.5rem;
     margin-bottom: 20px;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
 }
 
 .vision-text {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: white;
    font-weight: 500;
}
 
 .vision-decoration {
     width: 80px;
     height: 80px;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto;
     backdrop-filter: blur(10px);
 }
 
 .vision-decoration i {
     font-size: 2rem;
     color: white;
 }
 
 @media (max-width: 768px) {
    .slide-content {
        padding: 30px 60px;
        text-align: center;
    }
    
    .slide-content h1 {
        font-size: 3.5rem;
    }
    
    .slide-content h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .slide-content p {
        font-size: 1.3rem;
        max-width: 100%;
    }
    
    .prev-btn, .next-btn {
        width: 50px;
        height: 50px;
        padding: 15px;
        left: 30px;
        right: 30px;
    }
    
    /* Fotoğraf Galerisi - Tablet */
    .gallery-slider {
        height: 400px;
    }
    
    .gallery-prev-btn, .gallery-next-btn {
        left: -20px;
        right: -20px;
    }
    
    /* Eğitim Modeli Sayfası - Tablet */
    .levels-overview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .level-overview-card {
        padding: 25px 20px;
    }
    
    .content-section {
        padding: 35px 30px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-content {
        margin: 20px 0 0 30px;
        padding: 20px;
    }
    
    .slide-content {
        padding: 20px 40px;
    }
    
    .slide-content h1 {
        font-size: 2.8rem;
    }
    
    .slide-content h1::after {
        width: 60px;
        height: 3px;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .hero {
        height: 70vh;
    }
    
    .prev-btn, .next-btn {
        left: 20px;
        right: 20px;
    }
    
    /* Fotoğraf Galerisi - Mobil */
    .gallery-slider {
        height: 300px;
    }
    
    .gallery-prev-btn, .gallery-next-btn {
        width: 40px;
        height: 40px;
        padding: 12px;
        left: -20px;
        right: -20px;
    }
    
    .gallery-dots {
        bottom: -30px;
    }
    
    /* Eğitim Modeli Sayfası - Mobil */
    .levels-overview-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .level-overview-card {
        padding: 25px 20px;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .content-section {
        padding: 30px 20px;
    }
    
    .content-section h3 {
        font-size: 1.5rem;
    }
    
    .content-section p {
        font-size: 1rem;
    }
    
    .program-list li {
        font-size: 1rem;
        padding: 10px 0;
        padding-left: 25px;
    }
}

/* Ek mobil responsive düzenlemeler */
@media (max-width: 600px) {
    .levels-overview-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .level-overview-card {
        width: 100%;
        margin-bottom: 15px;
    }
}

@media (max-width: 400px) {
    .levels-overview-grid {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }
    
    .level-overview-card {
        padding: 20px 15px;
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Eğitim Modeli Sayfası Stilleri */
.education-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
}

.levels-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.level-overview-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(231, 76, 60, 0.1);
    position: relative;
    overflow: hidden;
}

.level-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c 0%, #f39c12 100%);
}

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

.level-overview-card .level-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.level-overview-card:hover .level-icon {
    transform: scale(1.1);
}

.level-overview-card .level-icon i {
    font-size: 1.5rem;
    color: white;
}

.level-overview-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.level-overview-card .motto {
    font-size: 1rem;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 12px;
    font-style: italic;
}

.level-overview-card .description {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}

.education-content {
    padding: 80px 0;
    background: white;
}

.content-grid {
    display: grid;
    gap: 50px;
}

.content-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid #e74c3c;
    transition: all 0.3s ease;
}

.content-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.content-section h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 600;
    position: relative;
}

.content-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c 0%, #f39c12 100%);
    border-radius: 2px;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.program-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.program-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

.program-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.1rem;
}

/* İlkokul Sayfası Stilleri */
.ilkokul-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
}

.ilkokul-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ilkokul-hero-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.ilkokul-hero-text .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #e74c3c;
    font-weight: 500;
}

.ilkokul-hero-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

.ilkokul-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ilkokul-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.2);
}

.ilkokul-icon i {
    font-size: 3rem;
    color: white;
}

.ilkokul-features {
    padding: 80px 0;
    background: white;
}

.ilkokul-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.ilkokul-features .feature-item {
    background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.ilkokul-features .feature-item:hover {
    transform: translateY(-8px);
    border-color: rgba(231, 76, 60, 0.2);
}

.ilkokul-features .feature-icon {
    margin-bottom: 25px;
}

.ilkokul-features .emoji {
    font-size: 3rem;
    display: block;
}

/* Ortaokul Sayfası Stilleri */
.ortaokul-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
}

.ortaokul-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ortaokul-hero-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.ortaokul-hero-text .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #e74c3c;
    font-weight: 500;
}

.ortaokul-hero-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

.ortaokul-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ortaokul-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.2);
}

.ortaokul-icon i {
    font-size: 3rem;
    color: white;
}

.ortaokul-features {
    padding: 80px 0;
    background: white;
}

.ortaokul-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.ortaokul-features .feature-item {
    background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.ortaokul-features .feature-item:hover {
    transform: translateY(-8px);
    border-color: rgba(231, 76, 60, 0.2);
}

.ortaokul-features .feature-icon {
    margin-bottom: 25px;
}

.ortaokul-features .emoji {
    font-size: 3rem;
    display: block;
}

/* LGS Sayfası Stilleri */
.lgs-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
}

.lgs-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lgs-hero-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.lgs-hero-text .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #e74c3c;
    font-weight: 500;
}

.lgs-hero-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

.lgs-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lgs-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(231, 76, 60, 0.2);
}

.lgs-icon i {
    font-size: 3rem;
    color: white;
}

.lgs-features {
    padding: 80px 0;
    background: white;
}

.lgs-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.lgs-features .feature-item {
    background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.lgs-features .feature-item:hover {
    transform: translateY(-8px);
    border-color: rgba(231, 76, 60, 0.2);
}

.lgs-features .feature-icon {
    margin-bottom: 25px;
}

.lgs-features .emoji {
    font-size: 3rem;
    display: block;
}

/* İletişim Sayfası Stilleri */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px 30px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: #e74c3c;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Mobil responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-answer {
        padding: 0 25px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px 25px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .form-group select {
        padding: 12px 18px;
        font-size: 0.95rem;
        background-size: 14px;
        background-position: right 15px center;
        padding-right: 45px;
    }
    
    .form-group select option {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
    
    /* Mobil responsive - Eğitim sayfaları */
    .ilkokul-hero-content,
    .ortaokul-hero-content,
    .lgs-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .ilkokul-hero-text h2,
    .ortaokul-hero-text h2,
    .lgs-hero-text h2 {
        font-size: 2.2rem;
    }
    
    .ilkokul-hero-text .lead,
    .ortaokul-hero-text .lead,
    .lgs-hero-text .lead {
        font-size: 1.1rem;
    }
    
    .ilkokul-icon,
    .ortaokul-icon,
    .lgs-icon {
        width: 120px;
        height: 120px;
    }
    
    .ilkokul-icon i,
    .ortaokul-icon i,
    .lgs-icon i {
        font-size: 2.5rem;
    }
    
    /* Mobil responsive - Features grid */
    .ilkokul-features .features-grid,
    .ortaokul-features .features-grid,
    .lgs-features .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ilkokul-features .feature-item,
    .ortaokul-features .feature-item,
    .lgs-features .feature-item {
        padding: 30px 20px;
    }
    
    .ilkokul-features .emoji,
    .ortaokul-features .emoji,
    .lgs-features .emoji {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .form-group select {
        padding: 10px 15px;
        font-size: 0.9rem;
        background-size: 12px;
        background-position: right 12px center;
        padding-right: 40px;
    }
    
    .form-group select option {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    /* Küçük ekranlar - Eğitim sayfaları */
    .ilkokul-hero-text h2,
    .ortaokul-hero-text h2,
    .lgs-hero-text h2 {
        font-size: 1.8rem;
    }
    
    .ilkokul-hero-text .lead,
    .ortaokul-hero-text .lead,
    .lgs-hero-text .lead {
        font-size: 1rem;
    }
    
    .ilkokul-hero-text p,
    .ortaokul-hero-text p,
    .lgs-hero-text p {
        font-size: 1rem;
    }
    
    .ilkokul-icon,
    .ortaokul-icon,
    .lgs-icon {
        width: 100px;
        height: 100px;
    }
    
    .ilkokul-icon i,
    .ortaokul-icon i,
    .lgs-icon i {
        font-size: 2rem;
    }
    
    /* Küçük ekranlar - Features grid */
    .ilkokul-features .features-grid,
    .ortaokul-features .features-grid,
    .lgs-features .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ilkokul-features .feature-item,
    .ortaokul-features .feature-item,
    .lgs-features .feature-item {
        padding: 25px 15px;
    }
    
    .ilkokul-features .emoji,
    .ortaokul-features .emoji,
    .lgs-features .emoji {
        font-size: 2rem;
    }
} 