/* Hizmetlerimiz Page Styles */

/* Scroll padding for fixed navbar */
html {
    scroll-padding-top: 150px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /*min-height: 100vh;*/
}

.hero-content {
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .hero-content.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

/* Page Title */
.page-title {
    font-family: 'Times New Roman', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: #032D63;
    margin: 0;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

    .page-title.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

/* Page Slogan */
.page-slogan {
    margin-top: 30px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

    .page-slogan.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

.slogan-text {
    font-family: 'Times New Roman', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    color: #032D63;
    display: block;
    line-height: 1.3;
}

.slogan-highlight {
    font-family: 'Times New Roman', serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    color: #8AB84F;
    display: block;
    line-height: 1.3;
}

/* Scroll Arrow */
.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 24px;
    cursor: pointer;
    animation: bounce 2s infinite;
    opacity: 1;
    transition: all 0.8s ease;
}

    .scroll-arrow.animate-in {
        opacity: 1;
    }

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Services Content Section */
.services-content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #052331 0%, #032D63 100%);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
    opacity: 1;
    transform: translateY(30px);
    transition: all 0.8s ease;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

    .services-intro.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

    .services-intro h2 {
        font-family: 'Times New Roman', serif;
        font-size: 2.5rem;
        color: white;
        margin-bottom: 20px;
    }

    .services-intro p {
        font-size: 1.2rem;
        color: white;
        line-height: 1.6;
        max-width: 800px;
        margin: 0 auto;
    }

/* Services List */
.services-list {
    display: flex;
    gap: 60px;
    margin-top: 40px;
    justify-content: center;
}

.services-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 300px;
}

.service-item {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 15px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateX(-20px);
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .service-item.animate-in {
        opacity: 1;
        transform: translateX(0);
    }

    .service-item:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(5px);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        color: #8eabde;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .services-list {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .services-column {
        min-width: 280px;
    }

    .service-item {
        font-size: 1rem;
        padding: 12px 16px;
    }

    .services-intro h2 {
        font-size: 2rem;
    }

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