/* ==========================================
   PATH WAY EĞİTİM DANIŞMANLIK
   Okul Detay Sayfası Stilleri
   ========================================== */


/* ==========================================
   COUNTRY DETAIL HERO
   ========================================== */

.country-detail-hero {
    margin-top: 80px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.country-hero-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.country-flag-hero {
    font-size: 5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
}

.country-detail-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.country-detail-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}


/* ==========================================
   QUICK INFO
   ========================================== */

.quick-info {
    background: white;
    padding: 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

.quick-info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.quick-info-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.quick-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.quick-info-card h4 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.quick-info-card p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}


/* ==========================================
   SCHOOLS SECTION
   ========================================== */

.schools-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.schools-container {
    max-width: 1200px;
    margin: 0 auto;
}

.schools-header {
    text-align: center;
    margin-bottom: 4rem;
}

.schools-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.schools-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}


/* ==========================================
   SCHOOL CARD
   ========================================== */

.school-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.school-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border-color: var(--secondary);
}

.school-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.school-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.school-card:hover .school-image img {
    transform: scale(1.05);
}

.school-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.school-badge.premium {
    background: var(--accent);
}

.school-content {
    padding: 2rem;
}

.school-header-info {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.school-header-info h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.school-location {
    color: var(--text-light);
    font-size: 1rem;
}

.school-rating {
    text-align: right;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.rating-score {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.school-description {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.school-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.school-feature {
    display: flex;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.sf-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.school-feature strong {
    display: block;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.school-feature p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.school-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text);
}

.school-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.school-details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
}

.school-details h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.detail-section h5 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.detail-section ul {
    list-style: none;
}

.detail-section li {
    padding: 0.5rem 0;
    color: var(--text);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.detail-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}


/* ==========================================
   ABOUT COUNTRY
   ========================================== */

.about-country {
    padding: 5rem 2rem;
    background: white;
}

.about-country-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-country h2 {
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 1rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--secondary