/* ==========================================
   PATH WAY EĞİTİM DANIŞMANLIK
   Yüksek Lisans (Master) 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;
}


/* ==========================================
   MASTER HERO
   ========================================== */

.master-hero {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.master-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%;
}

.master-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.master-hero h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.master-hero .highlight {
    color: var(--secondary);
}

.master-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
   ========================================== */

.master-countries {
    padding: 5rem 2rem;
    background: white;
}

.master-countries-container {
    max-width: 1200px;
    margin: 0 auto;
}

.master-countries h2 {
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 1rem;
}

.master-countries > p {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.countries-grid-master {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.master-country-card {
    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);
}

.master-country-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: var(--secondary);
}

.master-country-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.master-country-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.master-country-card:hover .master-country-image img {
    transform: scale(1.1);
}

.master-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;
}

.master-country-flag {
    font-size: 4rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.master-country-content {
    padding: 2rem;
}

.master-country-content h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.master-country-tagline {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.master-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.master-info-item {
    display: flex;
    align-items: start;
    gap: 0.8rem;
    padding: 0.8rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.master-info-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.master-info-item div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.master-info-item strong {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.master-info-item span {
    color: var(--text-light);
    font-size: 0.85rem;
}

.master-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;
}

.master-country-btn:hover {
    background: var(--primary);
    transform: scale(1.02);
}


/* ==========================================
   PROGRAM TYPES SECTION
   ========================================== */

.program-types {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.program-types-container {
    max-width: 1200px;
    margin: 0 auto;
}

.program-types h2 {
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 1rem;
}

.program-types > p {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.program-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: var(--secondary);
}

.program-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.program-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.program-duration {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.program-card p {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.program-card ul {
    list-style: none;
    padding-left: 0;
}

.program-card li {
    padding: 0.4rem 0;
    color: var(--text);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.program-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}


/* ==========================================
   APPLICATION PROCESS
   ========================================== */

.application-process {
    padding: 5rem 2rem;
    background: white;
}

.application-container {
    max-width: 1200px;
    margin: 0 auto;
}

.application-container h2 {
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 1rem;
}

.application-container > p {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.application-step {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--secondary);
    transition: all 0.3s;
}

.application-step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.application-step h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.application-step p {
    color: var(--text-light);
    line-height: 1.6;
}


/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 968px) {
    .master-hero h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .countries-grid-master {
        grid-template-columns: 1fr;
    }

    .master-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .master-hero h1 {
        font-size: 1.8rem;
    }

    .hero-stat strong {
        font-size: 2rem;
    }

    .master-country-content {
        padding: 1.5rem;
    }
}