/* Hizmetler Sayfası CSS */

/* Hero bölümü */
.page-hero-container {
	background: #121857;
	background: radial-gradient(circle, rgba(18, 24, 87, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(18, 24, 87, 1) 100%);
    padding: 4rem 0;
    margin-bottom: 0;
}

.page-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hizmetler Intro */
.services-intro {
    background-color: white;
    padding: 4rem 0;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.03);
}

.services-intro h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.services-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Hizmetler Grid */
.services-grid {
    padding: 4rem 0;
    background-color: #f8f9ff;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
    padding: 3rem;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-item.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.service-item.reverse .service-content {
    direction: ltr;
}

.service-image {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.7rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background-color: #f0f5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5271ff;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 0.8rem;
}

.feature-text {
    font-size: 0.95rem;
    color: #444;
}

.service-btn {
    display: inline-block;
    background-color: #5271ff;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.service-btn:hover {
    background-color: #4562e6;
}

/* CTA Bölümü */
.cta-section {
    padding: 1rem 0;
    background-color: #0c1339;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.cta-section:before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(82, 113, 255, 0.3) 0%, rgba(12, 19, 57, 0) 70%);
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    border-radius: 50%;
}

.cta-section:after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(82, 113, 255, 0.2) 0%, rgba(12, 19, 57, 0