/* ==========================================
   PATH WAY EĞİTİM DANIŞMANLIK
   Dil Okulları Sayfası Stilleri
   ========================================== */


/* ==========================================
   BREADCRUMB
   ========================================== */

.breadcrumb {
    margin-top: 80px;
    padding: 1rem 2rem;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--secondary);
}

.breadcrumb .separator {
    color: var(--text-light);
}

.breadcrumb .current {
    color: var(--primary);
    font-weight: 500;
}


/* ==========================================
   LANGUAGE SCHOOLS HERO
   ========================================== */

.ls-hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.ls-hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.ls-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ls-hero h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.ls-hero .highlight {
    color: var(--secondary);
}

.ls-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stat strong {
    font-size: 2.5rem;
    color: var(--secondary);
    font-weight: 700;
    display: block;
}

.hero-stat span {
    color: var(--text-light);
    font-size: 1rem;
}


/* ==========================================
   COUNTRIES GRID MAIN
   ========================================== */

.ls-countries {
    padding: 5rem 2rem;
    background: white;
}

.ls-countries-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ls-countries h2 {
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 1rem;
}

.countries-grid-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.country-card-main {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid var(--border);
}

.country-card-main:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: var(--secondary);
}

.country-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.country-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.country-card-main:hover .country-image img {
    transform: scale(1.1);
}

.country-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

.country-flag-large {
    font-size: 5rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.country-content {
    padding: 2rem;
}

.country-content h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.country-tagline {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.country-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: start;
    gap: 0.8rem;
    padding: 0.8rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-item div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.info-item strong {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
}

.info-item span {
    color: var(--text-light);
    font-size: 0.85rem;
}

.country-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.country-features li {
    padding: 0.5rem 0;
    color: var(--text);
    font-size: 0.95rem;
}

.country-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--secondary);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.3s;
}

.country-btn:hover {
    background: var(--primary);
    transform: scale(1.02);
}


/* ==========================================
   COURSE TYPES
   ========================================== */

.course-types {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.course-types-container {
    max-width: 1200px;
    margin: 0 auto;
}

.course-types h2 {
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 1rem;
}

.course-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.course-type-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.course-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--secondary);
}

.course-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.course-type-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.course-type-card > p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.course-type-card ul {
    list-style: none;
}

.course-type-card li {
    padding: 0.4rem 0;
    color: var(--text);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.course-type-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}


/* ==========================================
   WHY LANGUAGE SCHOOL
   ========================================== */

.why-language-school {
    padding: 5rem 2rem;
    background: white;
}

.why-ls-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-ls-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 1rem;
}

.why-ls-content > p {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--secondary);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}


/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 968px) {
    .ls-hero h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .countries-grid-main {
        grid-template-columns: 1fr;
    }

    .country-info-grid {
        grid-template-columns: 1fr;
    }

    .course-types-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .ls-hero h1 {
        font-size: 1.8rem;
    }

    .hero-stat strong {
        font-size: 2rem;
    }

    .country-content {
        padding: 1.5rem;
    }

    .country-content h3 {
        font-size: 1.5rem;
    }
}

/* ==========================================
   SERVICE ICON STYLES (SVG Line Icons)
   Same as main style.css
   ========================================== */

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    transition: all 0.3s ease;
    background: white !important;
    background-color: white !important;
    background-image: none !important;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.service-card:hover .service-icon {
    transform: translateY(-8px) scale(1.1);
    color: var(--accent);
    border-color: var(--secondary);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

/* Service card animations */
.service-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}