/* =============================================
   PROGRAMLAR SHARED STYLES (Sınav Kulübü, SEGEM Sanat, SEGEM Bilim)
   ============================================= */

/* Prog Intro */
.prog-intro {
    padding: 100px 0;
    background: #fff;
}

.prog-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.prog-intro-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

/* Prog Features */
.prog-intro-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prog-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.prog-feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(107, 21, 37, 0.1);
    border-color: rgba(107, 21, 37, 0.2);
}

.prog-feature-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(107, 21, 37, 0.15);
    min-width: 50px;
    line-height: 1;
}

.prog-feature-item h4 {
    font-size: 1.15rem;
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 4px;
}

.prog-feature-item p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Types Grid */
.prog-types {
    padding: 100px 0;
    background: #fafafa;
}

.prog-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.prog-type-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.prog-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6B1525, #c0384e);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.prog-type-card:hover::before {
    transform: scaleX(1);
}

.prog-type-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.08);
}

.prog-type-icon {
    width: 60px;
    height: 60px;
    background: #fdf2f4;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.prog-type-icon i {
    font-size: 1.4rem;
    color: #6B1525;
    transition: color 0.4s ease;
}

.prog-type-card:hover .prog-type-icon {
    background: linear-gradient(135deg, #6B1525, #c0384e);
}

.prog-type-card:hover .prog-type-icon i {
    color: #fff;
}

.prog-type-card h3 {
    font-size: 1.3rem;
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 10px;
}

.prog-type-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.02rem;
    margin-bottom: 16px;
}

.prog-type-detail {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.prog-type-detail span {
    font-size: 0.85rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.prog-type-detail span i {
    color: #6B1525;
    font-size: 0.8rem;
}

/* Stats */
.prog-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #6B1525, #5A1120);
    color: #fff;
}

.prog-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.prog-stat-card {
    text-align: center;
    padding: 30px 20px;
}

.prog-stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
}

.prog-stat-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* Packages */
.prog-packages {
    padding: 100px 0;
    background: #fff;
}

.prog-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    align-items: start;
}

.prog-package-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.prog-package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.prog-package-card.featured {
    border: 2px solid #6B1525;
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(107, 21, 37, 0.15);
}

.prog-package-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.prog-package-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6B1525, #c0384e);
    color: #fff;
    padding: 6px 24px;
    border-radius: 0 0 12px 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.prog-package-card h3 {
    font-size: 1.4rem;
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 16px;
}

.prog-package-price {
    font-size: 2.4rem;
    font-weight: 800;
    color: #6B1525;
    margin-bottom: 24px;
}

.prog-package-price span {
    font-size: 1rem;
    font-weight: 500;
    color: #888;
}

.prog-package-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}

.prog-package-card ul li {
    padding: 10px 0;
    font-size: 1rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f8f8f8;
}

.prog-package-card ul li:last-child {
    border-bottom: none;
}

.prog-package-card ul li i {
    font-size: 0.8rem;
    color: #2e7d32;
    width: 20px;
    text-align: center;
}

.prog-package-btn {
    display: block;
    padding: 14px 24px;
    background: #fdf2f4;
    color: #6B1525;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.prog-package-btn:hover {
    background: #6B1525;
    color: #fff;
}

.prog-package-card.featured .prog-package-btn {
    background: linear-gradient(135deg, #6B1525, #c0384e);
    color: #fff;
}

.prog-package-card.featured .prog-package-btn:hover {
    opacity: 0.9;
}

/* SEGEM Specific - Atelier Grid */
.prog-ateliers {
    padding: 100px 0;
    background: #fafafa;
}

.prog-atelier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.prog-atelier-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.prog-atelier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6B1525, #c0384e);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.prog-atelier-card:hover::before {
    transform: scaleX(1);
}

.prog-atelier-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.08);
}

.prog-atelier-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 1.5rem;
}

.prog-atelier-card h3 {
    font-size: 1.2rem;
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 8px;
}

.prog-atelier-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.prog-atelier-age {
    display: inline-block;
    background: #fdf2f4;
    color: #6B1525;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Schedule */
.prog-schedule {
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #fdf2f4 100%);
    position: relative;
}

.prog-schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.prog-schedule-card {
    background: #fff;
    border: 1px solid rgba(107,21,37,0.06);
    border-radius: 18px;
    padding: 24px 28px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.35s ease;
    box-shadow: 0 4px 16px rgba(107,21,37,0.04);
    position: relative;
    overflow: hidden;
}

.prog-schedule-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #6B1525, #c0384e);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.prog-schedule-card:hover {
    box-shadow: 0 12px 40px rgba(107,21,37,0.10);
    border-color: rgba(107, 21, 37, 0.15);
    transform: translateY(-3px);
}

.prog-schedule-card:hover::before {
    opacity: 1;
}

.prog-schedule-day {
    min-width: 76px;
    text-align: center;
    padding: 18px 14px;
    background: linear-gradient(135deg, #fdf2f4, #fce8ec);
    border-radius: 14px;
    border: 1px solid rgba(107,21,37,0.06);
    transition: all 0.3s ease;
}

.prog-schedule-card:hover .prog-schedule-day {
    background: linear-gradient(135deg, #6B1525, #c0384e);
}

.prog-schedule-card:hover .prog-schedule-day strong,
.prog-schedule-card:hover .prog-schedule-day span {
    color: #fff;
}

.prog-schedule-day strong {
    display: block;
    font-size: 0.9rem;
    color: #6B1525;
    font-weight: 800;
    transition: color 0.3s ease;
}

.prog-schedule-day span {
    font-size: 0.8rem;
    color: #6B1525;
    font-weight: 600;
    opacity: 0.7;
    transition: color 0.3s ease;
}

.prog-schedule-info h4 {
    font-size: 1.1rem;
    color: #1a1a2e;
    font-weight: 700;
    margin-bottom: 4px;
}

.prog-schedule-info p {
    font-size: 0.92rem;
    color: #888;
}

/* Testimonials for programs */
.prog-testimonials {
    padding: 100px 0;
    background: #fafafa;
}

.prog-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.prog-testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
}

.prog-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 4rem;
    color: rgba(107, 21, 37, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.prog-testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.prog-testimonial-card p {
    color: #555;
    line-height: 1.7;
    font-size: 1.02rem;
    font-style: italic;
    margin-bottom: 20px;
}

.prog-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.prog-testimonial-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #6B1525, #c0384e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

.prog-testimonial-author strong {
    display: block;
    font-size: 1.02rem;
    color: #1a1a2e;
}

.prog-testimonial-author span {
    font-size: 0.8rem;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .prog-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .prog-types-grid {
        grid-template-columns: 1fr;
    }

    .prog-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .prog-packages-grid {
        grid-template-columns: 1fr;
    }

    .prog-package-card.featured {
        transform: none;
    }

    .prog-package-card.featured:hover {
        transform: translateY(-8px);
    }

    .prog-atelier-grid {
        grid-template-columns: 1fr;
    }

    .prog-schedule-grid {
        grid-template-columns: 1fr;
    }

    .prog-testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .prog-stats-grid {
        grid-template-columns: 1fr;
    }

    .prog-intro,
    .prog-types,
    .prog-ateliers,
    .prog-packages,
    .prog-schedule,
    .prog-testimonials {
        padding: 60px 0;
    }

    .prog-stats-section {
        padding: 50px 0;
    }
}

/* ================================
   BAŞVURU FORMU
   ================================ */

.prog-application {
    padding: 110px 0;
    background: #fafafa;
}

.application-form-wrapper {
    max-width: 720px;
    margin: 0 auto;
    background: linear-gradient(145deg, #fefefe, #fdf2f4);
    border-radius: 24px;
    padding: 56px 48px;
    box-shadow: 0 20px 60px rgba(107, 21, 37, 0.06), 0 1px 3px rgba(107, 21, 37, 0.04);
    border: 1px solid rgba(107, 21, 37, 0.08);
    position: relative;
    overflow: hidden;
}

.application-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6B1525, #c0384e, #6B1525);
}

.application-form .app-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.app-form-group {
    margin-bottom: 4px;
}

.app-form-group.full-width {
    grid-column: 1 / -1;
}

.app-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.app-form-group label .required {
    color: #c0384e;
    margin-left: 2px;
}

.app-form-group label .optional {
    font-weight: 400;
    font-size: 12px;
    color: #aaa;
    margin-left: 4px;
}

.app-form-group input,
.app-form-group select,
.app-form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid rgba(107, 21, 37, 0.1);
    border-radius: 14px;
    font-size: 15px;
    color: #1a1a2e;
    background: #fff;
    transition: all 0.3s ease;
    font-family: inherit;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.app-form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.app-form-group select option {
    padding: 14px 16px;
    font-size: 16px;
    line-height: 2.4;
    min-height: 48px;
}

.app-form-group input:focus,
.app-form-group select:focus,
.app-form-group textarea:focus {
    border-color: #6B1525;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(107,21,37,0.08);
}

.app-form-group input::placeholder,
.app-form-group textarea::placeholder {
    color: #bbb;
}

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

.form-inline-feedback {
    min-height: 1.25rem;
    margin: 16px 0 0;
    text-align: center;
    font-size: 0.92rem;
    font-weight: 600;
}

.app-form-submit {
    text-align: center;
    margin-top: 32px;
}

.app-form-submit .btn-primary {
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 14px;
    background: linear-gradient(135deg, #6B1525, #c0384e);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.app-form-submit .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(107,21,37,0.3);
}

.app-form-submit .btn-primary i {
    font-size: 14px;
}

.form-success-msg {
    display: none;
    text-align: center;
    padding: 24px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    margin-top: 20px;
    font-size: 15px;
    font-weight: 600;
    color: #166534;
}

.form-success-msg i {
    display: block;
    font-size: 36px;
    color: #22c55e;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .prog-application {
        padding: 64px 0;
    }

    .application-form-wrapper {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .application-form .app-form-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   SEGEM MEDIA (Sanat - Müzik & Video)
   ================================ */

.segem-media-section {
    padding: 110px 0;
    background: #fafafa;
}

.segem-media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.segem-media-photo {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.segem-media-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.segem-media-photo:hover img {
    transform: scale(1.05);
}

.segem-media-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(107, 21, 37, 0.85), transparent);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.segem-media-video {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.segem-media-video .video-container {
    height: 100%;
}

.segem-media-video .video-placeholder {
    position: relative;
    height: 100%;
    cursor: pointer;
}

.segem-media-video .video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 350px;
}

.segem-media-video .video-overlay-play {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.35);
    transition: background 0.3s ease;
}

.segem-media-video .video-placeholder:hover .video-overlay-play {
    background: rgba(0, 0, 0, 0.5);
}

.segem-media-video .video-play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6B1525, #c0384e);
    border: none;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(107, 21, 37, 0.3);
}

.segem-media-video .video-play-btn:hover {
    transform: scale(1.1);
}

.segem-media-video .video-play-text {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.segem-media-video .video-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .segem-media-section {
        padding: 64px 0;
    }

    .segem-media-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .segem-media-photo img,
    .segem-media-video .video-placeholder img {
        min-height: 250px;
        max-height: 300px;
    }
}

/* ================================
   SEGEM LAB (Bilim - Laboratuvar)
   ================================ */

.segem-lab-section {
    padding: 110px 0;
    background: #fafafa;
}

.segem-lab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.segem-lab-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.segem-lab-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.segem-lab-image:hover img {
    transform: scale(1.04);
}

.segem-lab-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #6B1525, #c0384e);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(107, 21, 37, 0.3);
}

.segem-lab-content .section-tag {
    justify-content: flex-start;
}

.segem-lab-content .section-title {
    text-align: left;
}

.segem-lab-content p {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 12px;
}

.segem-lab-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 24px;
}

.segem-lab-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fdf2f4;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #6B1525;
    transition: all 0.3s ease;
}

.segem-lab-feat:hover {
    background: #6B1525;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 21, 37, 0.2);
}

.segem-lab-feat:hover i {
    color: rgba(255, 255, 255, 0.8);
}

.segem-lab-feat i {
    font-size: 16px;
    color: #6B1525;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .segem-lab-section {
        padding: 64px 0;
    }

    .segem-lab-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .segem-lab-image img {
        height: 260px;
    }

    .segem-lab-features {
        grid-template-columns: 1fr;
    }
}
