/* --- Edukacja Page Specific CSS --- */

/* Hero Section */
.edu-hero {
    padding: 6rem 0;
    background: #FFFFFF;
}

.edu-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.edu-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.text-orange {
    color: #F97316;
}

.edu-hero-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

.edu-hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #FFFFFF;
}

/* Collage */
.edu-hero-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    position: relative;
}

.collage-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.collage-img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
}

.collage-col-1 .collage-img {
    height: 300px;
}

.collage-col-2 {
    position: relative;
}

.collage-col-2 .collage-img {
    height: 100%;
    min-height: 600px;
}

.collage-deco {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 80px;
    height: 150px;
    z-index: 2;
}

/* Dlaczego edukacja */
.edu-why {
    background: #FFF5ED;
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
}

.section-desc {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* Obszary tematyczne */
.edu-areas {
    padding: 6rem 0;
    background: #FFFFFF;
}

.edu-areas .section-title {
    margin-bottom: 4rem;
}

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

.area-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.area-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.icon-bg-orange {
    background-color: #FFEDD5;
    color: #EA580C;
}

.icon-bg-purple {
    background-color: #E0E7FF;
    color: #4F46E5;
}

.icon-bg-yellow {
    background-color: #FEF3C7;
    color: #D97706;
}

.area-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.area-card p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Formy edukacji */
.edu-forms {
    padding: 6rem 0;
    background: #FAFAFA;
}

.edu-forms .section-title {
    margin-bottom: 4rem;
}

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

.form-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.form-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.form-card-content {
    padding: 2rem;
    flex-grow: 1;
}

.form-card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.form-card-content p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Oferta szkoleniowa */
.edu-offer {
    padding: 6rem 0;
    background: #FFFFFF;
}

.edu-offer .section-title {
    margin-bottom: 4rem;
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.offer-card {
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
}

.offer-card-white {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
}

.offer-card-blue {
    background: var(--color-primary);
    color: #FFFFFF;
}

.offer-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.icon-bg-blue {
    background-color: #E0E7FF;
    color: var(--color-primary);
}

.icon-bg-white {
    background-color: #FFFFFF;
    color: var(--color-primary);
}

.offer-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.offer-card-white h3 {
    color: var(--color-text-main);
}

.offer-card-blue h3 {
    color: #FFFFFF;
}

.offer-desc {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.offer-card-white .offer-desc {
    color: var(--color-text-muted);
}

.offer-card-blue .offer-desc {
    color: #E0E7FF;
}

.offer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.offer-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.text-blue {
    color: var(--color-primary);
    font-size: 1.25rem;
}

.text-white {
    color: #FFFFFF;
    font-size: 1.25rem;
}

/* Jak pracujemy */
.edu-how {
    padding: 6rem 0;
    background: #FAFAFA;
}

.edu-how .section-title {
    margin-bottom: 4rem;
}

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

.how-step {
    display: flex;
    flex-direction: column;
}

.how-number {
    font-size: 4rem;
    font-weight: 700;
    color: #F97316;
    margin-bottom: 1rem;
    line-height: 1;
}

.how-step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.how-step p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Join CTA */
.join-section {
    padding: 5rem 0;
}

.join-card {
    background: #FFF5ED;
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    max-width: 1216px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
}

.join-card h2 {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.join-card > p {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.join-squiggle-left {
    position: absolute;
    left: -20px;
    bottom: 30px;
    width: 60px;
    height: 60px;
}

.join-squiggle-right {
    position: absolute;
    right: -30px;
    top: 10px;
    width: 50px;
    height: 140px;
}

/* Join CTA Teal Override */
.join-teal {
    background: #429FB7 !important; /* Morski/Teal kolor z obrazka */
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .edu-hero-grid,
    .offer-grid,
    .how-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .areas-grid,
    .forms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .collage-col-2 .collage-img {
        min-height: 300px;
    }
}
