/* Szolgáltatások oldal stílusai */
.services-section {
    padding: 120px 0 80px !important;
    background-color: var(--background-color);
}

.services-section h1 {
    padding-top: 40px;
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Two Column Services Layout for Szolgaltatasok page */
.services-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: start;
}

.services-column {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.services-column h2.column-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--secondary-color-2);
    position: sticky;
    top: 100px;
    background: var(--background-color);
    z-index: 10;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(137, 85, 248, 0.329);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    min-height: 650px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(137, 85, 248, 0.445);
}

.service-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
}

.service-card p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.service-card .details {
    margin-top: 20px;
}

.service-card .details ul {
    list-style: none;
    padding: 0;
}

.service-card .details li {
    color: var(--text-color);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.service-card .details li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.service-card .learn-more {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 12px 24px;
    background-color: #8955f8;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.service-card .learn-more:hover {
    background-color: #8a69a7;
    color: white;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Detailed Services Section */
.detailed-services {
    padding: 80px 0 !important;
}

.service-detail {
    margin-bottom: 80px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(137, 85, 248, 0.08);
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-detail h2 .icon {
    font-size: 2.5rem;
}

.service-detail .content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.service-detail .description {
    color: var(--text-color);
}

.service-detail .description p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-detail .description p:last-child {
    margin-bottom: 0;
}

.service-detail .benefits {
    background: var(--secondary-color-1);
    padding: 30px;
    border-radius: 15px;
}

.service-detail .benefits h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.service-detail .benefits ul {
    list-style: none;
    padding: 0;
}

.service-detail .benefits li {
    color: var(--text-color);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.service-detail .benefits li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.service-detail .benefits li:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-section {
        padding: 100px 0 60px !important;
    }

    .detailed-services {
        padding: 60px 0;
    }

    .service-detail {
        padding: 30px;
        margin-bottom: 60px;
    }

    .service-detail h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 90px 0 50px !important;
    }
    
    .services-section h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .service-card {
        padding: 30px 20px;
    }

    /* Responsive Two Column Services */
    .services-columns {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .services-column {
        gap: 3rem;
    }

    .services-column h2.column-title {
        font-size: 1.8rem;
        position: static;
    }

    .detailed-services {
        padding: 40px 0;
    }

    .service-detail {
        padding: 25px;
        margin-bottom: 40px;
        border-radius: 15px;
    }

    .service-detail .content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail h2 {
        font-size: 1.5rem;
    }

    .service-detail h2 .icon {
        font-size: 2rem;
    }

    .service-detail .benefits {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 80px 0 40px !important;
    }

    .services-section h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .detailed-services {
        padding: 30px 0;
    }

    .service-detail {
        padding: 20px;
        margin-bottom: 30px;
    }

    .service-detail h2 {
        font-size: 1.3rem;
        gap: 10px;
    }

    .service-detail h2 .icon {
        font-size: 1.8rem;
    }

    .service-detail .content {
        gap: 20px;
    }

    .service-detail .benefits {
        padding: 15px;
    }

    .service-detail .benefits h3 {
        font-size: 1.2rem;
    }
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 40px;
}

footer .social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    margin: 0 auto 1rem auto;
}

footer .social-icon {
    font-size: 2rem;
    color: white;
    transition: color 0.2s;
}

footer .social-icon:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}