/* Hero Section dla Usług Doradczych */
.services-hero {
    background:
        linear-gradient(135deg, rgba(26, 35, 50, 0.88) 0%, rgba(44, 57, 71, 0.80) 50%, rgba(26, 35, 50, 0.88) 100%),
        url('../images/hero-uslugi-doradcze.jpg') center/cover no-repeat;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    border-bottom: 3px solid var(--navy-dark);
    position: relative;
}

.services-hero h1 {
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.services-hero p {
    font-size: 1.125rem;
    color: #f5f5f5;
    max-width: 800px;
    margin: 0 auto 1.875rem;
    line-height: 1.6;
}

.services-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

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

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
}

.hero-stat-label {
    font-size: 0.95rem;
    color: #f5f5f5;
    margin-top: 5px;
}

/* Content Section */
.services-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
    background: #f5f5f5;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 3px solid var(--navy-dark);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(35, 39, 46, 0.15);
}

.service-card h3 {
    color: #1a2332;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #2c2c2c;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.service-card ul li {
    color: #2c2c2c;
    padding: 8px 0 8px 25px;
    position: relative;
    line-height: 1.6;
}

.service-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Process Section */
.process-section {
    background: #ffffff;
    padding: 50px 30px;
    margin: 40px 0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.process-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #1a2332;
    margin-bottom: 40px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 25px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-red);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(223, 63, 63, 0.3);
}

.process-step h3 {
    color: #1a2332;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.process-step p {
    color: #5a5a5a;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-us-section {
    background: #ffffff;
    padding: 50px 30px;
    margin: 40px 0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.why-us-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #1a2332;
    margin-bottom: 40px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.why-us-item {
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid var(--navy-dark);
    transition: all 0.3s ease;
}

.why-us-item:hover {
    background: #ffffff;
    border-left-color: var(--accent-red);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.why-us-item h3 {
    color: #1a2332;
    font-size: 1.3rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-us-item h3 span {
    font-size: 1.5rem;
}

.why-us-item p {
    color: #2c2c2c;
    line-height: 1.7;
    font-size: 1rem;
}

/* CTA Section */
.cta-contact {
    background: linear-gradient(135deg, #1a2332 0%, #2c3947 100%);
    color: #ffffff;
    padding: 60px 30px;
    text-align: center;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border-top: 3px solid var(--navy-dark);
}

.cta-contact h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-contact p {
    font-size: 1.2rem;
    color: #f5f5f5;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 30px auto;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.1rem;
    color: #f5f5f5;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-red);
}

.btn-cta {
    display: inline-block;
    background: var(--navy-dark);
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(223, 63, 63, 0.4);
    color: #ffffff;
}

/* Testimonials Section (optional for future) */
.testimonials-section {
    background: #ffffff;
    padding: 50px 30px;
    margin: 40px 0;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #1a2332;
    margin-bottom: 40px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #5a5a5a;
    max-width: 800px;
    margin: -20px auto 40px;
    line-height: 1.6;
}

/* Services Title */
.services-title {
    text-align: center;
    font-size: 2.2rem;
    color: #1a2332;
    margin-bottom: 20px;
}

/* Additional Info Section */
.additional-info {
    margin-top: 40px;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    border-left: 4px solid var(--accent-red);
}

.additional-info h3 {
    color: #1a2332;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.additional-info p {
    color: #2c2c2c;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Database Link Section */
.database-link-section {
    margin-top: 30px;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    border-radius: 10px;
}

.database-link-section h3 {
    color: #1a2332;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.database-link-section p {
    color: #5a5a5a;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.btn-large {
    display: inline-block;
    background: var(--accent-red);
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background: var(--accent-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(223, 63, 63, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero {
        padding: 50px 20px 40px;
    }

    .services-hero h1 {
        font-size: 1.8rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

    .services-content {
        padding: 40px 20px;
    }

    .services-grid,
    .process-steps,
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .process-section h2,
    .why-us-section h2,
    .testimonials-section h2 {
        font-size: 1.6rem;
    }

    .cta-contact h2 {
        font-size: 1.8rem;
    }

    .cta-contact p {
        font-size: 1rem;
    }
}

