/* [1] Services Sayfası Özel CSS */

/* [1.1] Active menü link stili */
.nav-bar .main-menu a.active {
    color: #87cefa !important;
    text-shadow: 0 0 10px #87cefa;
    transform: translateY(-2px);
}

/* [2] Services Main Container */
.services-main {
    background: linear-gradient(135deg, #e6f7ff 0%, #cce6ff 100%);
    min-height: 100vh;
}

/* [3] Services Banner */
.services-banner {
    background: linear-gradient(135deg, #1e90ff 0%, #0056b3 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 0;
}

.services-banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.services-banner-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* [4] Services Content Container */
.services-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* [5] Services Section Styling */
.services-content section {
    margin: 4rem 0;
}

.services-content h2 {
    color: var(--ping);
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.services-content h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--ping), #0056b3);
    margin: 1rem auto;
    border-radius: 2px;
}

/* [6] Services Intro Section */
.services-intro {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(30, 144, 255, 0.1);
    text-align: center;
    border: 1px solid rgba(30, 144, 255, 0.1);
}

.services-intro h2 {
    color: #0056b3;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.services-intro h3 {
    color: var(--ping);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 2rem;
    font-style: italic;
}

.intro-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
}

/* [7] Course Types Section */
.course-types-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(30, 144, 255, 0.1);
    border: 1px solid rgba(30, 144, 255, 0.1);
}

.course-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* [7.1] Course Cards */
.course-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid rgba(30, 144, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--ping) 0%, #0056b3 100%);
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(30, 144, 255, 0.2);
    border-color: var(--ping);
}

.course-card.highlighted {
    border-color: var(--ping);
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.3);
    background: linear-gradient(135deg, #e6f7ff 0%, #ffffff 100%);
}

/* [7.2] Course Header */
.course-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.course-header h3 {
    color: var(--ping);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.course-icon {
    font-size: 2rem;
    opacity: 0.8;
}

/* [7.3] Course Content */
.course-description {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.course-details {
    background: rgba(30, 144, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--ping);
}

.course-details p {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

/* [8] Programs Section */
.programs-section {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(30, 144, 255, 0.2);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* [8.1] Program Cards */
.program-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(30, 144, 255, 0.1);
    border: 1px solid rgba(30, 144, 255, 0.2);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-3px);
}

.program-card h3 {
    color: #0056b3;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.program-card p {
    color: #444;
    line-height: 1.6;
    margin: 0;
}

/* [9] Practical Info Section */
.practical-info-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(30, 144, 255, 0.1);
    border: 1px solid rgba(30, 144, 255, 0.1);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* [9.1] Info Items */
.info-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fbff 0%, #e6f7ff 100%);
    border-radius: 10px;
    border: 1px solid rgba(30, 144, 255, 0.2);
}

.info-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.info-item p {
    color: #333;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* [10] Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--ping) 0%, #0056b3 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.3);
}

.cta-section h2 {
    color: white;
    margin-bottom: 2rem;
}

.cta-section h2::after {
    background: rgba(255, 255, 255, 0.3);
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--ping);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #f0f8ff;
}

/* [11] Responsive Design */

/* [11.1] Tablet */
@media (max-width: 1024px) {
    .services-content {
        padding: 0 1rem;
    }
    
    .services-content section {
        margin: 3rem 0;
    }
    
    .services-intro,
    .course-types-section,
    .programs-section,
    .practical-info-section {
        padding: 2rem;
    }
    
    .services-banner-content h1 {
        font-size: 2.5rem;
    }
    
    .services-content h2 {
        font-size: 2rem;
    }
}

/* [11.2] Mobile */
@media (max-width: 768px) {
    
    /* [11.2.1] Banner Mobile */
    .services-banner {
        padding: 2rem 1rem;
    }
    
    .services-banner-content h1 {
        font-size: 2rem;
    }
    
    .services-banner-subtitle {
        font-size: 1.1rem;
    }
    
    /* [11.2.2] Content Mobile */
    .services-content {
        padding: 0 1rem;
    }
    
    .services-content section {
        margin: 2rem 0;
    }
    
    .services-intro,
    .course-types-section,
    .programs-section,
    .practical-info-section {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 3rem 1.5rem;
    }
    
    .services-content h2 {
        font-size: 1.7rem;
    }
    
    /* [11.2.3] Grid Mobile */
    .course-types-grid {
        grid-template-columns: 1fr;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    /* [11.2.4] Cards Mobile */
    .course-card {
        padding: 1.5rem;
    }
    
    .course-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* [11.3] Large Mobile */
@media (max-width: 480px) {
    .services-banner-content h1 {
        font-size: 1.7rem;
    }
    
    .services-intro,
    .course-types-section,
    .programs-section,
    .practical-info-section {
        padding: 1rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .course-card {
        padding: 1rem;
    }
}

/* [12] Animation for Page Load */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-content section {
    animation: slideInUp 0.6s ease-out forwards;
}

.services-intro {
    animation-delay: 0.1s;
}

.course-types-section {
    animation-delay: 0.2s;
}

.programs-section {
    animation-delay: 0.3s;
}

.practical-info-section {
    animation-delay: 0.4s;
}

.cta-section {
    animation-delay: 0.5s;
}