/* ===== SUBPAGES SHARED STYLES ===== */

.page-main {
    min-height: calc(100vh - 200px);
    background: var(--gray-50);
}

.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.page-header {
    text-align: center;
    margin-bottom: 48px;
}

.page-title {
    font-family: 'Merriweather', serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.25;
}

.page-subtitle {
    color: var(--gray-500);
    font-size: 15px;
    font-weight: 500;
}

/* ===== CONTENT SECTIONS ===== */
.page-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.content-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-100);
}

.content-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.content-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--gray-800);
    margin-bottom: 16px;
    line-height: 1.3;
}

.content-section p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.content-section p:last-child {
    margin-bottom: 0;
}

.content-section ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.content-section ul li {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.8;
    padding: 6px 0 6px 24px;
    position: relative;
}

.content-section ul li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--blue-500);
    font-weight: 800;
}

.content-section a {
    color: var(--blue-600);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.content-section a:hover {
    color: var(--blue-800);
    text-decoration: underline;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: flex-start;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--gray-200);
    transition: all 0.2s;
}

.contact-card:hover {
    border-color: var(--blue-300);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.contact-card-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.contact-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-link {
    color: var(--blue-600);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--blue-800);
}

.contact-form-wrap {
    position: sticky;
    top: 100px;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.contact-form-card .form-heading {
    font-family: 'Merriweather', serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--gray-800);
    margin-bottom: 8px;
    text-align: left;
}

.form-subheading {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--gray-800);
    background: var(--gray-50);
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    resize: vertical;
    min-height: 100px;
}

.contact-form textarea:focus {
    border-color: var(--blue-400);
    background: var(--white);
}

.contact-form-card .form-note {
    text-align: center;
    margin-top: 14px;
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 500;
}

.contact-form-card .form-note a {
    color: var(--blue-500);
    text-decoration: none;
}

.contact-form-card .form-note a:hover {
    text-decoration: underline;
}

/* ===== REKLAMACJE PAGE ===== */
.steps-simple {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 24px 0;
}

.step-simple {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--blue-50);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--blue-500);
}

.step-simple-num {
    width: 36px;
    height: 36px;
    background: var(--blue-600);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.step-simple h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.step-simple p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
}

.info-box {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px;
    background: #fef3c7;
    border-radius: var(--radius-md);
    border: 1px solid #fde68a;
    margin: 20px 0;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
}

.info-box-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.contact-mini-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 20px 0;
}

.contact-mini {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 16px 20px;
    background: var(--blue-50);
    border-radius: var(--radius-md);
}

.contact-mini-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.contact-mini strong {
    font-size: 14px;
    color: var(--gray-800);
    display: block;
    margin-bottom: 2px;
}

.contact-mini p {
    font-size: 13px;
    color: var(--gray-500);
    margin: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-wrap {
        position: static;
    }
}

@media (max-width: 600px) {
    .page-container {
        padding: 40px 16px 60px;
    }
    .page-content {
        padding: 28px 20px;
    }
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    .contact-form-card {
        padding: 24px 20px;
    }
}