/* ==========================================================================
   ÖZŞEN ÖZEL EĞİTİM KURSU - ALTERNATİF 1: Dinamik & Yüksek Dönüşümlü Portalı
   ========================================================================== */

/* Hero Banner Alternatif 1 */
.hero-alt1 {
    position: relative;
    background: var(--gradient-hero);
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 5rem;
    overflow: hidden;
    color: #FFFFFF;
}

.hero-alt1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../assets/images/hero/hero-classroom.jpg') center/cover no-repeat;
    opacity: 0.16;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.hero-alt1-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(245, 166, 35, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(46, 204, 113, 0.12) 0%, transparent 45%);
    pointer-events: none;
}

.hero-alt1-title {
    font-size: clamp(2.4rem, 5.2vw, 3.8rem);
    font-weight: 900;
    line-height: 1.12;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.hero-alt1-title .text-gradient-gold {
    background: linear-gradient(135deg, #FFD56B 0%, #F5A623 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-alt1-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 580px;
    line-height: 1.8;
    margin-bottom: 2.25rem;
}

/* Hero Live Floating Badges */
.hero-alt1-visual {
    position: relative;
    z-index: 2;
}

.hero-alt1-main-img {
    width: 100%;
    max-height: 490px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.hero-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: var(--shadow-xl);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 4;
}

.hero-float-card-1 {
    bottom: -20px;
    left: -20px;
    animation: floatAnim1 3.5s ease-in-out infinite;
}

.hero-float-card-2 {
    top: -20px;
    right: -20px;
    animation: floatAnim2 4s ease-in-out infinite;
}

@keyframes floatAnim1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes floatAnim2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* LGS & YKS Target Stat Pills */
.hero-target-pills {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.target-pill-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-md);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.target-pill-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.target-pill-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    line-height: 1.2;
}

/* Program Cards (LGS / YKS / Ara Sınıf) */
.program-card-alt1 {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-column: column;
    height: 100%;
}

.program-card-alt1:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(27, 77, 142, 0.3);
}

.program-card-header {
    padding: 2rem 2rem 1.5rem;
    position: relative;
}

.program-card-header.lgs-header {
    background: linear-gradient(135deg, #1B4D8E 0%, #0F2D5A 100%);
    color: #FFFFFF;
}

.program-card-header.yks-header {
    background: linear-gradient(135deg, #F5A623 0%, #D4891A 100%);
    color: #121824;
}

.program-card-header.ara-header {
    background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
    color: #FFFFFF;
}

.program-badge-popular {
    position: absolute;
    top: 16px;
    right: 20px;
    background: #FFFFFF;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.program-card-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.program-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.program-feature-list li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-primary);
}

.program-feature-list li:last-child {
    border-bottom: none;
}

.program-feature-list li i {
    color: var(--accent);
    font-size: 0.95rem;
}

/* 6-Pillar Feature Grid */
.pillar-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 2.25rem 1.75rem;
    border: 1px solid var(--border);
    transition: all var(--transition-base);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transition: width var(--transition-base);
}

.pillar-card:hover::before {
    width: 8px;
    background: var(--secondary);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(27, 77, 142, 0.2);
}

/* Exam Trial Schedule Table */
.trial-table-wrap {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--border);
}

.trial-table {
    margin-bottom: 0;
}

.trial-table th {
    background: var(--primary-dark);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 1.1rem 1.5rem;
    border: none;
}

.trial-table td {
    padding: 1.1rem 1.5rem;
    vertical-align: middle;
    font-size: 0.92rem;
    border-color: var(--border-light);
}

.trial-table tr:hover td {
    background-color: var(--primary-50);
}

/* Fast Application Box */
.application-box-alt1 {
    background: linear-gradient(135deg, #1B4D8E 0%, #0F2D5A 100%);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    color: #FFFFFF;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.application-box-alt1::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245,166,35,0.25) 0%, transparent 70%);
    pointer-events: none;
}

/* Hakkımızda Section Styles */
.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    object-fit: cover;
}

.about-floating-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.75rem;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 2px solid rgba(245, 166, 35, 0.3);
}

.about-val-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all var(--transition-base);
    height: 100%;
}

.about-val-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

/* Duyurular & Haberler Section Styles */
.duyuru-card {
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.duyuru-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.duyuru-img-wrap {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.duyuru-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.duyuru-card:hover .duyuru-img-wrap img {
    transform: scale(1.06);
}

.duyuru-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
}

.duyuru-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.duyuru-date {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0.6rem;
}

.duyuru-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.duyuru-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}
