/**
 * BanabiKurs - Kurs Detay Sayfası Stilleri
 */

/* Hero Banner - Header arkasında kalmaması için padding-top */
.kurs-hero-banner {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 24px 0;
    border-bottom: 1px solid #e5e7eb;
}

/* Mobil için header fixed olduğunda */
@media (max-width: 1199px) {
    .kurs-hero-banner {
        padding: 20px 0;
    }
}

.kurs-hero-banner__breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.kurs-hero-banner__breadcrumb a {
    color: #6b7280;
    text-decoration: none;
}

.kurs-hero-banner__breadcrumb a:hover {
    color: #0058E0;
}

.kurs-hero-banner__breadcrumb i {
    font-size: 10px;
    color: #9ca3af;
}

.kurs-hero-banner__breadcrumb span {
    color: #1a1a2e;
}

/* School Hero */
.school-hero {
    padding: 40px 0;
    background: #fff;
}

.school-hero__wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Gallery */
.school-hero__gallery {
    position: relative;
}

.gallery-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #f3f4f6;
}

.gallery-main > a {
    display: block;
}

.gallery-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.gallery-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 8px;
}

.gallery-badges .badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge--verified {
    background: #22c55e;
    color: #fff;
}

.badge--featured {
    background: #FF9924;
    color: #fff;
}

.gallery-expand {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.gallery-expand:hover {
    background: rgba(0,0,0,0.9);
    color: #fff;
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
}

.gallery-thumbs .thumb {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.2s;
}

.gallery-thumbs .thumb:hover,
.gallery-thumbs .thumb.active {
    opacity: 1;
}

.gallery-thumbs .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs .thumb--more {
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
}

/* Info Section */
.school-hero__info {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.info-type {
    background: rgba(0,88,224,0.1);
    color: #0058E0;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.info-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.info-rating .stars {
    color: #fbbf24;
    font-size: 14px;
}

.info-rating .score {
    font-weight: 700;
    color: #1a1a2e;
}

.info-rating .count {
    color: #6b7280;
    font-size: 14px;
}

.info-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.3;
}

.info-location {
    color: #6b7280;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.info-highlights .highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f3f4f6;
    border-radius: 8px;
    font-size: 14px;
    color: #4b5563;
}

.info-highlights .highlight i {
    color: #0058E0;
}

.info-price {
    background: #f8fafc;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.info-price .price-label {
    display: block;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 4px;
}

.info-price .price-value {
    font-size: 24px;
    font-weight: 700;
    color: #0058E0;
}

.info-price .price-value small {
    font-size: 18px;
    color: #6b7280;
}

.info-cta .cta-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 16px 20px;
    background: #22c55e;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.2s;
}

.info-cta .cta-primary:hover {
    background: #16a34a;
    color: #fff;
}

.info-cta .cta-primary i {
    font-size: 24px;
}

.info-cta .cta-label {
    display: block;
    font-size: 12px;
    opacity: 0.9;
}

.info-cta .cta-number {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

.cta-secondary {
    display: flex;
    gap: 8px;
}

.cta-secondary .btn-whatsapp,
.cta-secondary .btn-favorite,
.cta-secondary .btn-share {
    flex: 1;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    font-size: 18px;
    color: #6b7280;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cta-secondary .btn-whatsapp {
    color: #25d366;
}

.cta-secondary .btn-whatsapp:hover {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}

.cta-secondary .btn-favorite:hover {
    color: #ef4444;
    border-color: #ef4444;
}

.cta-secondary .btn-share:hover {
    color: #0058E0;
    border-color: #0058E0;
}

.info-note {
    margin-top: 16px;
    font-size: 13px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Kurs Content */
.kurs-content {
    background: #f8fafc;
    padding: 40px 0;
}

.kurs-section {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.kurs-section__title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kurs-section__title i {
    color: #0058E0;
}

.kurs-section__content {
    color: #6b7280;
    line-height: 1.8;
}

/* Features */
.kurs-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.kurs-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #f3f4f6;
    border-radius: 8px;
    font-size: 14px;
    color: #4b5563;
}

.kurs-features .feature-item i {
    color: #0058E0;
}

.kurs-features .feature-item.highlight {
    background: rgba(0,88,224,0.1);
    color: #0058E0;
    font-weight: 600;
}

/* CTA Banner */
.kurs-cta-banner {
    background: linear-gradient(135deg, #0058E0 0%, #003da0 100%);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    color: #fff;
}

.kurs-cta-banner .cta-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.kurs-cta-banner .cta-content p {
    opacity: 0.9;
    margin: 0;
}

.kurs-cta-banner .cta-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: #fff;
    color: #0058E0;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.kurs-cta-banner .cta-button:hover {
    transform: scale(1.05);
}

.kurs-cta-banner .cta-button i {
    font-size: 20px;
}

.kurs-cta-banner .cta-button .cta-label {
    font-size: 12px;
    color: #6b7280;
}

.kurs-cta-banner .cta-button .cta-number {
    font-size: 16px;
    color: #0058E0;
}

/* Programs */
.kurs-programs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.program-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.program-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    background: rgba(0,88,224,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #0058E0;
    flex-shrink: 0;
}

.program-icon i {
    font-size: 20px !important;
    color: #0058E0 !important;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-info {
    flex: 1;
    min-width: 0;
}

.program-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: #1a1a2e;
}

.program-info p {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 4px;
}

.program-price {
    font-weight: 700;
    color: #0058E0;
}

/* Facilities */
.kurs-facilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    font-size: 14px;
    color: #4b5563;
}

.facility-item i {
    color: #22c55e;
}

/* Activities */
.kurs-activities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.activity-tag {
    padding: 8px 16px;
    background: #f3f4f6;
    border-radius: 20px;
    font-size: 14px;
    color: #4b5563;
}

/* Reviews */
.kurs-reviews-summary {
    display: flex;
    gap: 40px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 24px;
}

/* Reviews Summary - Clean & Simple */
.kurs-reviews-summary {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.reviews-score-card {
    text-align: center;
}

.reviews-score-big {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.score-number {
    font-size: 72px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.score-stars {
    display: flex;
    gap: 8px;
}

.score-stars i {
    font-size: 28px;
    color: #fbbf24;
}

.score-count {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
    margin-top: 4px;
}

/* Review List */
.kurs-reviews-list {
    margin-top: 24px;
}

.kurs-reviews-list .review-item {
    padding: 24px 0;
    border-bottom: 1px solid #e5e7eb;
}

.kurs-reviews-list .review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

.review-header img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #e5e7eb;
}

.review-user-info {
    flex: 1;
    min-width: 0;
}

.review-user-name {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px;
    line-height: 1.3;
}

.review-user-meta {
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.review-user-meta i {
    font-size: 14px;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fef3c7;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    color: #92400e;
    flex-shrink: 0;
}

.review-rating i {
    color: #f59e0b;
    font-size: 14px;
}

.review-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin: 0;
    padding-left: 62px;
}

.review-header h4 {
    font-size: 16px;
    margin: 0;
    color: #1a1a2e;
}

.review-header span {
    font-size: 13px;
    color: #9ca3af;
}

.review-rating {
    margin-left: auto;
    background: #fef3c7;
    color: #d97706;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.review-item p {
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* Sidebar */
.kurs-sidebar {
    position: sticky;
    top: 10px;
}

.kurs-cta-card {
    background: #fff;
    border: 2px solid #0058E0;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}

.cta-header {
    text-align: center;
    margin-bottom: 20px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FF9924;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.cta-header h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.cta-header p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

.cta-phone-main {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #22c55e;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    margin-bottom: 16px;
    transition: all 0.2s;
}

.cta-phone-main:hover {
    background: #16a34a;
    color: #fff;
}

.cta-phone-main .phone-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.cta-phone-main .phone-label {
    font-size: 12px;
    opacity: 0.9;
}

.cta-phone-main .phone-number {
    font-size: 20px;
    font-weight: 700;
}

.cta-divider {
    text-align: center;
    color: #9ca3af;
    margin: 16px 0;
    position: relative;
}

.cta-divider::before,
.cta-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #e5e7eb;
}

.cta-divider::before {
    left: 0;
}

.cta-divider::after {
    right: 0;
}

.cta-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all 0.2s;
}

.cta-whatsapp:hover {
    background: #128c7e;
    color: #fff;
}

.cta-callback {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: #fff;
    color: #0058E0;
    border: 2px solid #0058E0;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.cta-callback:hover {
    background: #0058E0;
    color: #fff;
}

.cta-note {
    text-align: center;
    font-size: 13px;
    color: #9ca3af;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Price Card */
.kurs-price-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.kurs-price-card h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.price-range {
    background: #f8fafc;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.price-range .price-label {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 4px;
}

.price-range .price-value {
    font-size: 22px;
    font-weight: 700;
    color: #0058E0;
}

.price-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.price-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #4b5563;
}

.price-includes li i {
    color: #22c55e;
}

.price-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: #f3f4f6;
    color: #0058E0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.price-cta:hover {
    background: #0058E0;
    color: #fff;
}

/* Location Card */
.kurs-location-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.kurs-location-card h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.location-map {
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-address {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.location-address i {
    color: #0058E0;
    margin-top: 4px;
}

.location-address p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

.location-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #f3f4f6;
    color: #0058E0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.location-link:hover {
    background: #0058E0;
    color: #fff;
}

/* Hours Card */
.kurs-hours-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.kurs-hours-card h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.kurs-hours-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kurs-hours-card li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 14px;
}

.kurs-hours-card li:last-child {
    border-bottom: none;
}

.kurs-hours-card li span:first-child {
    color: #6b7280;
}

.kurs-hours-card li span:last-child {
    font-weight: 600;
    color: #1a1a2e;
}

.kurs-hours-card li.closed span:last-child {
    color: #ef4444;
}

/* Floating CTA */
.kurs-floating-cta {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
}

.floating-phone,
.floating-whatsapp {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s;
    position: relative;
}

.floating-phone {
    background: #22c55e;
}

.floating-whatsapp {
    background: #25d366;
}

.floating-phone:hover,
.floating-whatsapp:hover {
    transform: scale(1.1);
    color: #fff;
}

.floating-tooltip {
    position: absolute;
    right: 70px;
    background: #1a1a2e;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}

.floating-phone:hover .floating-tooltip {
    opacity: 1;
    visibility: visible;
}

.floating-tooltip strong {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.floating-tooltip span {
    font-size: 16px;
    font-weight: 700;
}

/* Sticky Bottom CTA (Mobile) */
.kurs-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 100;
}

.sticky-info .sticky-name {
    display: block;
    font-weight: 600;
    color: #1a1a2e;
    font-size: 14px;
}

.sticky-info .sticky-price {
    font-size: 12px;
    color: #6b7280;
}

.sticky-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #22c55e;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1199px) {
    .school-hero__wrapper {
        grid-template-columns: 1fr;
    }
    
    .kurs-programs {
        grid-template-columns: 1fr;
    }
    
    .kurs-facilities {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .gallery-main img {
        height: 250px;
    }
    
    .kurs-reviews-summary {
        flex-direction: column;
        gap: 20px;
    }
    
    .kurs-facilities {
        grid-template-columns: 1fr;
    }
    
    .kurs-cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}


/* Activities */
.kurs-activities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.activity-tag {
    padding: 8px 16px;
    background: #f3f4f6;
    border-radius: 20px;
    font-size: 14px;
    color: #4b5563;
    transition: all 0.2s;
}

.activity-tag:hover {
    background: rgba(0,88,224,0.1);
    color: #0058E0;
}

/* Review Form */
.kurs-review-form {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.kurs-review-form h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kurs-review-form h4 i {
    color: #0058E0;
}

.review-form .form-label {
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 8px;
}

.review-form textarea.form-control {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    resize: vertical;
    min-height: 100px;
}

.review-form textarea.form-control:focus {
    border-color: #0058E0;
    box-shadow: 0 0 0 3px rgba(0, 88, 224, 0.1);
}

.review-form .btn-primary {
    background: #0058E0;
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
}

.review-form .btn-primary:hover {
    background: #003da0;
    transform: translateY(-1px);
}

/* Star Rating Input */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    font-size: 28px;
    color: #d1d5db;
    transition: all 0.15s ease;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: #fbbf24;
}

.star-rating label:hover {
    transform: scale(1.15);
}

.star-rating label:active {
    transform: scale(0.95);
}

/* Alert in review form */
.kurs-review-form .alert {
    margin: 0;
    border-radius: 8px;
}

.kurs-review-form .alert-info {
    background: rgba(0, 88, 224, 0.1);
    border: 1px solid rgba(0, 88, 224, 0.2);
    color: #0058E0;
}

.kurs-review-form .alert-info a {
    color: #0058E0;
    font-weight: 600;
    text-decoration: underline;
}

.kurs-review-form .alert-info a:hover {
    color: #003da0;
}

/* Favorite Button Active State */
.btn-favorite.active,
.btn-favorite.active i {
    color: #ef4444 !important;
}

.btn-favorite.active {
    border-color: #ef4444;
}

/* Gallery Popup Enhancements */
.mfp-bg {
    background: rgba(0,0,0,0.9);
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #fff;
    font-size: 28px;
}

/* Info CTA Improvements */
.info-cta .cta-primary {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Floating CTA Animation */
.floating-phone,
.floating-whatsapp {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.floating-phone:hover,
.floating-whatsapp:hover {
    animation: none;
}

/* Mobile Improvements */
@media (max-width: 575px) {
    .school-hero {
        padding: 20px 0;
    }
    
    .school-hero__info {
        padding: 16px;
    }
    
    .info-title {
        font-size: 20px;
    }
    
    .info-price .price-value {
        font-size: 22px;
    }
    
    .info-highlights {
        gap: 8px;
    }
    
    .info-highlights .highlight {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .kurs-section {
        padding: 16px;
        margin-bottom: 16px;
    }
    
    .kurs-section__title {
        font-size: 18px;
    }
    
    .kurs-features .feature-item {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .kurs-cta-banner {
        padding: 20px;
    }
    
    .kurs-cta-banner .cta-content h3 {
        font-size: 18px;
    }
    
    .program-card {
        padding: 14px;
    }
    
    .program-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .kurs-sticky-cta {
        padding: 10px 12px;
    }
    
    .sticky-button {
        padding: 10px 16px;
        font-size: 14px;
    }
}


/* Content Section Improvements */
.kurs-section__content {
    color: #4b5563;
    line-height: 1.7;
    font-size: 14px;
}

.kurs-section__content p {
    margin-bottom: 14px;
}

.kurs-section__content p:last-child {
    margin-bottom: 0;
}

.kurs-section__content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 20px 0 10px;
}

.kurs-section__content h3:first-child {
    margin-top: 0;
}

.kurs-section__content ul,
.kurs-section__content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.kurs-section__content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.kurs-section__content strong {
    color: #1a1a2e;
    font-weight: 600;
}

/* Fix for raw HTML display issue */
.kurs-section__content br + br {
    display: none;
}

/* Gallery Image Placeholder */
.gallery-main img[src=""],
.gallery-main img:not([src]) {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

/* Info Card Improvements */
.school-hero__info {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    position: sticky;
    top: 100px;
}

/* Mobile Gallery Fix */
@media (max-width: 1199px) {
    .school-hero__wrapper {
        grid-template-columns: 1fr;
    }
    
    .school-hero__info {
        position: static;
    }
    
    .gallery-main img {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .gallery-main img {
        height: 220px;
    }
    
    .school-hero__info {
        padding: 16px;
    }
    
    .info-title {
        font-size: 18px;
    }
}


/* Review Form Info */
.review-form-info {
    font-size: 13px;
    color: #64748b;
    background: #f0f9ff;
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 3px solid #0058E0;
}

.review-form-info i {
    color: #0058E0;
    margin-right: 6px;
}

/* Review Success Message */
.review-success-message {
    text-align: center;
    padding: 40px 20px;
}

.review-success-message .success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.review-success-message .success-icon i {
    font-size: 36px;
    color: #fff;
}

.review-success-message h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.review-success-message p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}


/* ============================================
   KURS İMKANLARI - Profesyonel Kategorize Sistem
   ============================================ */

.kurs-imkanlar-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Kategori Container */
.imkan-category {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.imkan-category:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Kategori Header */
.imkan-category-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e2e8f0;
}

.imkan-category-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0058E0 0%, #0040a0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 88, 224, 0.2);
}

.imkan-category-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    letter-spacing: -0.02em;
}

/* İmkan Grid */
.imkan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

/* İmkan Item */
.imkan-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.imkan-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #0058E0 0%, #0040a0 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.imkan-item:hover {
    border-color: #0058E0;
    box-shadow: 0 4px 16px rgba(0, 88, 224, 0.12);
    transform: translateY(-2px);
}

.imkan-item:hover::before {
    transform: scaleY(1);
}

/* İmkan Icon */
.imkan-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0058E0;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.imkan-item:hover .imkan-icon {
    background: linear-gradient(135deg, #0058E0 0%, #0040a0 100%);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

/* İmkan Content */
.imkan-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.imkan-name {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
}

.imkan-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .imkan-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 14px;
    }
    
    .imkan-category {
        padding: 20px;
    }
    
    .imkan-category-header {
        margin-bottom: 16px;
        padding-bottom: 14px;
    }
    
    .imkan-category-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .imkan-category-title {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .kurs-imkanlar-container {
        gap: 24px;
    }
    
    .imkan-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .imkan-category {
        padding: 18px;
        border-radius: 12px;
    }
    
    .imkan-category-header {
        gap: 12px;
        margin-bottom: 14px;
        padding-bottom: 12px;
    }
    
    .imkan-category-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        border-radius: 10px;
    }
    
    .imkan-category-title {
        font-size: 17px;
    }
    
    .imkan-item {
        padding: 14px;
        gap: 12px;
    }
    
    .imkan-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .imkan-name {
        font-size: 14px;
    }
    
    .imkan-desc {
        font-size: 12px;
    }
}

/* Dark Mode Support (Opsiyonel) */
@media (prefers-color-scheme: dark) {
    .imkan-category {
        background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
        border-color: #334155;
    }
    
    .imkan-category-header {
        border-bottom-color: #334155;
    }
    
    .imkan-category-title {
        color: #f1f5f9;
    }
    
    .imkan-item {
        background: #1e293b;
        border-color: #334155;
    }
    
    .imkan-item:hover {
        border-color: #0058E0;
    }
    
    .imkan-name {
        color: #f1f5f9;
    }
    
    .imkan-desc {
        color: #94a3b8;
    }
}

/* Print Styles */
@media print {
    .kurs-imkanlar-container {
        gap: 20px;
    }
    
    .imkan-category {
        page-break-inside: avoid;
        border: 1px solid #000;
        box-shadow: none;
    }
    
    .imkan-item {
        border: 1px solid #ccc;
        box-shadow: none;
    }
    
    .imkan-item:hover {
        transform: none;
    }
}
