/* Zekasoft_CreateRegDesign (Figma) — Eğitim başvuru landing + form */
:root {
    --eb-slate-50: #f8fafc;
    --eb-slate-400: #94a3b8;
    --eb-slate-500: #64748b;
    --eb-slate-700: #334155;
    --eb-slate-800: #1e293b;
    --eb-slate-900: #0f172a;
    --eb-slate-950: #020617;
    --eb-blue-300: #93c5fd;
    --eb-blue-400: #60a5fa;
    --eb-blue-500: #3b82f6;
    --eb-blue-600: #2563eb;
    --eb-amber-100: #fef3c7;
    --eb-amber-300: #fcd34d;
    --eb-amber-400: #fbbf24;
    --eb-amber-500: #f59e0b;
    --eb-orange-500: #f97316;
    --eb-orange-600: #ea580c;
    --eb-purple-300: #d8b4fe;
    --eb-purple-500: #a855f7;
    --eb-emerald-300: #6ee7b7;
    --eb-emerald-500: #10b981;
    --eb-red-400: #f87171;
}

.eb-page {
    min-height: 100vh;
    color: var(--eb-slate-50);
    background: linear-gradient(to bottom right, var(--eb-slate-950) 0%, #172554 45%, var(--eb-slate-950) 100%);
    font-family: "DM Sans", system-ui, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.eb-container {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .eb-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.eb-pad-y {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media (min-width: 640px) {
    .eb-pad-y {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

.eb-logo-wrap {
    text-align: center;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .eb-logo-wrap {
        margin-bottom: 3rem;
    }
}

.eb-logo-wrap img {
    max-width: min(220px, 75vw);
    height: auto;
    max-height: 44px;
}

.eb-hero-grid {
    display: grid;
    gap: 2rem;
    align-items: flex-start;
}

@media (min-width: 1024px) {
    .eb-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.eb-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--eb-blue-300);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.eb-badge i {
    color: var(--eb-blue-400);
    font-size: 1rem;
}

.eb-hero-title {
    font-size: clamp(2rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #fff;
}

.eb-hero-title sup {
    font-size: 0.45em;
    font-weight: 600;
}

.eb-gift-box {
    background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.2), rgba(249, 115, 22, 0.2));
    border: 2px solid rgba(245, 158, 11, 0.4);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.15);
}

.eb-gift-head {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.eb-gift-head i {
    color: var(--eb-amber-400);
    font-size: 1.35rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.eb-gift-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--eb-amber-100);
    margin-bottom: 0.5rem;
}

.eb-gift-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.eb-gift-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.eb-gift-list li:last-child {
    margin-bottom: 0;
}

@keyframes eb-gift-check-shine {
    0%, 65%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 1px rgba(251, 191, 36, 0.25));
        color: var(--eb-amber-400);
    }
    12% {
        transform: scale(1.18);
        filter: drop-shadow(0 0 10px rgba(254, 240, 138, 0.95)) drop-shadow(0 0 22px rgba(251, 191, 36, 0.55));
        color: #fef9c3;
    }
}

.eb-gift-list i {
    display: inline-block;
    color: var(--eb-amber-400);
    margin-top: 0.2rem;
    flex-shrink: 0;
    animation: eb-gift-check-shine 2.2s ease-in-out infinite;
}

.eb-gift-list li:nth-child(1) i {
    animation-delay: 0s;
}

.eb-gift-list li:nth-child(2) i {
    animation-delay: 0.55s;
}

.eb-gift-list li:nth-child(3) i {
    animation-delay: 1.1s;
}

.eb-gift-list li:nth-child(4) i {
    animation-delay: 1.65s;
}

@media (prefers-reduced-motion: reduce) {
    .eb-gift-list i {
        animation: none;
        transform: none;
        filter: none;
    }
}

.eb-price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.eb-price-val {
    font-size: clamp(2.25rem, 6vw, 3rem);
    font-weight: 700;
    color: #fff;
}

.eb-price-note {
    color: var(--eb-slate-400);
    font-size: 0.95rem;
}

.eb-form-card {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    scroll-margin-top: 1rem;
}

@media (min-width: 640px) {
    .eb-form-card {
        padding: 2rem;
    }
}

.eb-form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.eb-form-lead {
    font-size: 0.875rem;
    color: var(--eb-slate-400);
    margin-bottom: 1.5rem;
}

.eb-field {
    margin-bottom: 1rem;
}

.eb-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--eb-slate-50);
}

.eb-input {
    width: 100%;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--eb-slate-700);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.eb-input:focus {
    outline: none;
    border-color: var(--eb-blue-500);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.35);
}

.eb-input::placeholder {
    color: var(--eb-slate-500);
}

.eb-field-hint {
    font-size: 0.75rem;
    color: var(--eb-slate-400);
    margin-top: 0.25rem;
}

.eb-error {
    font-size: 0.875rem;
    color: var(--eb-red-400);
    margin-top: 0.25rem;
}

@keyframes eb-btn-submit-glow {
    0%, 100% {
        box-shadow:
            0 8px 28px rgba(234, 88, 12, 0.5),
            0 0 0 1px rgba(253, 186, 116, 0.35),
            0 0 28px rgba(251, 146, 60, 0.45);
    }
    50% {
        box-shadow:
            0 10px 36px rgba(234, 88, 12, 0.6),
            0 0 0 1px rgba(254, 215, 170, 0.55),
            0 0 40px rgba(253, 186, 116, 0.55);
    }
}

.eb-btn-submit {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.9rem 1.25rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(105deg, var(--eb-orange-600) 0%, var(--eb-orange-500) 45%, #fb923c 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.15s ease, filter 0.15s ease;
    animation: eb-btn-submit-glow 2.4s ease-in-out infinite;
}

.eb-btn-submit:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
    color: #fff;
}

@media (prefers-reduced-motion: reduce) {
    .eb-btn-submit {
        animation: none;
        box-shadow:
            0 8px 28px rgba(234, 88, 12, 0.5),
            0 0 24px rgba(251, 146, 60, 0.4);
    }
}

.eb-alert {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.eb-alert-danger {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fecaca;
}

.validation-summary-errors.eb-alert-danger {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1rem;
}

.eb-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(51, 65, 85, 0.6);
    border-bottom: 1px solid rgba(51, 65, 85, 0.6);
}

@media (min-width: 768px) {
    .eb-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

.eb-stat i {
    font-size: 1.75rem;
    color: var(--eb-blue-400);
    margin-bottom: 0.75rem;
}

.eb-stat-num {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.eb-stat-label {
    font-size: 0.7rem;
    color: var(--eb-slate-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.eb-band {
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(30, 41, 59, 0.8);
    border-bottom: 1px solid rgba(30, 41, 59, 0.8);
    padding: 3.5rem 0;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .eb-band {
        padding: 4.5rem 0;
        margin-top: 3rem;
    }
}

.eb-section-title {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.eb-section-title sup {
    font-size: 0.55em;
}

.eb-section-sub {
    text-align: center;
    color: var(--eb-slate-400);
    max-width: 42rem;
    margin: 0 auto 3rem;
    font-size: 0.95rem;
}

.eb-benefits-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .eb-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.eb-benefit-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: border-color 0.2s;
}

.eb-benefit-card:hover {
    border-color: rgba(59, 130, 246, 0.45);
}

.eb-benefit-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--eb-blue-400);
    font-size: 1.25rem;
}

.eb-benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
}

.eb-benefit-card p {
    font-size: 0.9rem;
    color: var(--eb-slate-400);
    line-height: 1.65;
    margin: 0;
}

.eb-prog-block {
    padding: 3.5rem 0;
}

.eb-prog-inner {
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .eb-prog-inner {
        padding: 2rem;
    }
}

.eb-prog-inner h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
}

.eb-prog-inner h3 i {
    color: var(--eb-blue-400);
}

.eb-prog-days {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .eb-prog-days {
        grid-template-columns: repeat(3, 1fr);
    }
}

.eb-day-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--eb-slate-700);
    border-radius: 0.75rem;
    padding: 1.25rem;
}

.eb-day-num {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    margin-right: 0.5rem;
}

.eb-day-num--1 {
    background: var(--eb-blue-500);
}

.eb-day-num--2 {
    background: var(--eb-purple-500);
}

.eb-day-num--3 {
    background: var(--eb-emerald-500);
}

.eb-day-label {
    font-weight: 600;
    font-size: 0.9rem;
}

.eb-day-label.c1 {
    color: var(--eb-blue-300);
}

.eb-day-label.c2 {
    color: var(--eb-purple-300);
}

.eb-day-label.c3 {
    color: var(--eb-emerald-300);
}

.eb-day-card h4 {
    font-weight: 700;
    margin: 0.75rem 0 0.5rem;
    color: #fff;
    font-size: 1rem;
}

.eb-day-card p {
    font-size: 0.875rem;
    color: var(--eb-slate-400);
    margin: 0 0 0.5rem;
    line-height: 1.5;
}

.eb-day-meta {
    font-size: 0.75rem;
    color: var(--eb-slate-500);
}

/* Program detay kartları: masaüstünde 4 kolon × 2 satır */
.eb-detail-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1023px) {
    .eb-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 479px) {
    .eb-detail-grid {
        grid-template-columns: 1fr;
    }
}

.eb-detail-cell {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 0.5rem;
    padding: 1rem;
}

.eb-detail-label {
    font-size: 0.7rem;
    color: var(--eb-slate-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
}

.eb-detail-val {
    font-weight: 600;
    color: var(--eb-slate-50);
    font-size: 0.9rem;
}

.eb-detail-gift {
    background: linear-gradient(to bottom right, rgba(245, 158, 11, 0.2), rgba(249, 115, 22, 0.2));
    border: 2px solid rgba(245, 158, 11, 0.4);
}

.eb-detail-gift .eb-detail-label {
    color: var(--eb-amber-300);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.eb-detail-gift .eb-detail-val {
    color: var(--eb-amber-100);
    font-size: 0.85rem;
    line-height: 1.45;
}

.eb-faq-wrap {
    max-width: 56rem;
    margin: 0 auto;
}

.eb-faq-item {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.eb-faq-q {
    width: 100%;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    background: transparent;
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    font-family: inherit;
}

.eb-faq-q:hover {
    background: rgba(51, 65, 85, 0.25);
}

.eb-faq-q i {
    color: var(--eb-slate-400);
    transition: transform 0.2s;
    flex-shrink: 0;
}

.eb-faq-item.is-open .eb-faq-q i {
    transform: rotate(180deg);
}

.eb-faq-a {
    display: none;
    padding: 0 1.25rem 1rem;
    font-size: 0.9rem;
    color: var(--eb-slate-400);
    line-height: 1.65;
}

.eb-faq-item.is-open .eb-faq-a {
    display: block;
}

.eb-footer {
    text-align: center;
    padding: 3rem 1rem 6rem;
}

@media (min-width: 1024px) {
    .eb-footer {
        padding-bottom: 3rem;
    }
}

.eb-footer-mail {
    color: var(--eb-slate-400);
    margin-bottom: 0.5rem;
}

.eb-footer-mail a {
    color: var(--eb-blue-400);
    text-decoration: none;
}

.eb-footer-mail a:hover {
    color: var(--eb-blue-300);
    text-decoration: underline;
}

.eb-footer-copy {
    font-size: 0.875rem;
    color: var(--eb-slate-500);
}

.eb-foot-links {
    text-align: center;
    font-size: 0.8rem;
    color: var(--eb-slate-500);
    padding: 0 1rem 1.5rem;
}

.eb-foot-links a {
    color: var(--eb-slate-400);
    text-decoration: none;
}

.eb-foot-links a:hover {
    color: var(--eb-slate-300);
}
