/* Services Page Styles - Creative & Minimal Design */

:root {
    --services-primary: #7DD87D;
    --services-dark: #2C2C2C;
    --services-light: #F8F9FA;
    --services-gray: #6C757D;
    --services-white: #FFFFFF;
    --services-accent: #5CB85C;
}

/* ===== Hero Section ===== */
.services-hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2C2C2C 100%);
}

.services-hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.services-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.9) 0%, rgba(26, 26, 26, 0.85) 100%);
}

.services-hero-patterns {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.service-pattern {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.service-pattern-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--services-primary) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.service-pattern-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--services-accent) 0%, transparent 70%);
    bottom: -100px;
    left: 10%;
    animation-delay: 5s;
}

.service-pattern-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--services-primary) 0%, transparent 70%);
    top: 40%;
    left: -50px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(125, 216, 125, 0.15);
    border: 1px solid rgba(125, 216, 125, 0.3);
    border-radius: 50px;
    color: var(--services-primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.services-hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--services-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.services-gradient-text {
    background: linear-gradient(135deg, var(--services-primary) 0%, var(--services-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.services-hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--services-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== Common Section Styles ===== */
.services-section {
    padding: 6rem 0;
    position: relative;
}

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

.services-section-decoration {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.services-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--services-dark);
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.services-section-subtitle {
    font-size: 1.125rem;
    color: var(--services-gray);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* ===== Core Services Section ===== */
.services-core-section {
    background: var(--services-light);
}

.services-core-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-core-card {
    background: var(--services-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-core-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.service-core-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-core-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-core-card:hover .service-core-image img {
    transform: scale(1.1);
}

.service-core-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-core-card:hover .service-core-overlay {
    opacity: 1;
}

.service-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--services-white);
    color: var(--services-dark);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-explore-btn:hover {
    background: var(--services-primary);
    color: var(--services-white);
    transform: translateY(-2px);
}

.service-core-content {
    padding: 2rem;
    position: relative;
}

.service-core-number {
    position: absolute;
    top: -20px;
    right: 2rem;
    font-size: 3rem;
    font-weight: 800;
    color: var(--services-primary);
    opacity: 0.2;
    line-height: 1;
}

.service-core-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--services-dark);
    margin-bottom: 1rem;
}

.service-core-description {
    color: var(--services-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-core-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-core-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--services-gray);
    line-height: 1.6;
}

.service-core-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--services-primary);
    font-weight: 700;
}

/* See More Button */
.services-see-more {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    animation: bounce 2s infinite;
}

.services-see-more-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--services-dark);
    border: 2px solid var(--services-primary);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.services-see-more-btn:hover {
    background: var(--services-primary);
    color: var(--services-white);
    transform: translateY(5px);
    box-shadow: 0 10px 30px rgba(125, 216, 125, 0.3);
}

.services-see-more-btn svg {
    transition: transform 0.3s ease;
}

.services-see-more-btn:hover svg {
    transform: translateY(3px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===== Process Section ===== */
.services-process-section {
    background: var(--services-white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--services-light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: var(--services-white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.process-step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--services-primary) 0%, var(--services-accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--services-white);
    transition: transform 0.3s ease;
}

.process-step:hover .process-step-icon {
    transform: rotate(360deg);
}

.process-step-number {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--services-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.process-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--services-dark);
    margin-bottom: 1rem;
}

.process-step-description {
    color: var(--services-gray);
    line-height: 1.7;
    font-size: 0.938rem;
}

.process-connector {
    display: none;
}

/* ===== Additional Services Section ===== */
.services-additional-section {
    background: var(--services-light);
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.additional-card {
    background: var(--services-white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.additional-card:hover {
    border-color: var(--services-primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(125, 216, 125, 0.15);
}

.additional-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(125, 216, 125, 0.1) 0%, rgba(92, 184, 92, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--services-primary);
    transition: all 0.3s ease;
}

.additional-icon i {
    font-size: 2.5rem;
}

.additional-card:hover .additional-icon {
    background: linear-gradient(135deg, var(--services-primary) 0%, var(--services-accent) 100%);
    color: var(--services-white);
    transform: scale(1.1);
}

.additional-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--services-dark);
    margin-bottom: 0.75rem;
}

.additional-description {
    color: var(--services-gray);
    line-height: 1.6;
    font-size: 0.938rem;
}

/* ===== Why Choose Us Section ===== */
.services-why-section {
    background: var(--services-white);
}

.why-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.why-visual-side {
    position: relative;
}

.why-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.why-image-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.why-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: var(--services-white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.why-badge svg {
    color: var(--services-primary);
}

.why-badge span {
    font-weight: 700;
    color: var(--services-dark);
}

.why-text-side .services-section-decoration {
    justify-content: flex-start;
}

.why-text-side .services-section-title {
    text-align: left;
}

.why-lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--services-gray);
    margin-bottom: 2.5rem;
}

.why-reasons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-reason {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.why-reason-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--services-primary) 0%, var(--services-accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--services-white);
}

.why-reason-content {
    flex: 1;
}

.why-reason-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--services-dark);
    margin-bottom: 0.5rem;
}

.why-reason-text {
    color: var(--services-gray);
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.services-cta-section {
    position: relative;
    padding: 5rem 0;
    background: var(--services-dark);
    overflow: hidden;
}

.services-cta-background {
    position: absolute;
    inset: 0;
}

.services-cta-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(125, 216, 125, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(92, 184, 92, 0.1) 0%, transparent 50%);
}

.services-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.services-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--services-white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.services-cta-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.services-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.services-btn-primary,
.services-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.services-btn-primary {
    background: linear-gradient(135deg, var(--services-primary) 0%, var(--services-accent) 100%);
    color: var(--services-white);
    box-shadow: 0 10px 30px rgba(125, 216, 125, 0.3);
}

.services-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(125, 216, 125, 0.4);
}

.services-btn-secondary {
    background: var(--services-white);
    color: var(--services-dark);
    border: 2px solid var(--services-white);
}

.services-btn-secondary:hover {
    background: transparent;
    color: var(--services-white);
    transform: translateY(-3px);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .why-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-image-main img {
        height: 500px;
    }
    
    .why-text-side .services-section-decoration {
        justify-content: center;
    }
    
    .why-text-side .services-section-title {
        text-align: center;
    }
    
    .services-hero-title {
        font-size: 3.5rem;
    }
    
    .services-hero-stats {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .services-hero-section {
        min-height: 70vh;
        padding: 3rem 0;
    }
    
    .services-hero-content {
        padding: 0 1.5rem;
    }
    
    .services-hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .services-hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
        letter-spacing: -0.01em;
    }
    
    .services-hero-description {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        line-height: 1.6;
    }
    
    .services-hero-stats {
        gap: 2rem;
        flex-direction: column;
    }
    
    .hero-stat {
        width: 100%;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Animasyonları mobilde yavaşlat */
    .service-pattern {
        animation-duration: 30s;
    }
    
    /* Pattern boyutlarını küçült */
    .service-pattern-1 {
        width: 300px;
        height: 300px;
        top: -150px;
        right: -100px;
    }
    
    .service-pattern-2 {
        width: 200px;
        height: 200px;
        bottom: -50px;
    }
    
    .service-pattern-3 {
        width: 150px;
        height: 150px;
    }
    
    .services-section {
        padding: 4rem 0;
    }
    
    .services-container {
        padding: 0 1.5rem;
    }
    
    .services-section-title {
        font-size: 2rem;
    }
    
    .services-section-subtitle {
        font-size: 1rem;
    }
    
    .services-core-grid,
    .additional-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .why-reasons {
        gap: 1.5rem;
    }
    
    .why-reason-number {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .services-cta-section {
        padding: 4rem 0;
    }
    
    .services-cta-content h2 {
        font-size: 2rem;
        margin-bottom: 0.875rem;
    }
    
    .services-cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .services-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-btn-primary,
    .services-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 2rem;
    }
}

@media (max-width: 480px) {
    .services-hero-section {
        min-height: 600px;
    }
    
    .services-hero-content {
        padding: 0 1rem;
    }
    
    .services-hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.875rem;
        margin-bottom: 1.25rem;
    }
    
    .services-hero-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .services-hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .services-hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .services-hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .services-container {
        padding: 0 1rem;
    }
    
    .services-section {
        padding: 3rem 0;
    }
    
    .services-section-title {
        font-size: 1.75rem;
    }
    
    .services-section-subtitle {
        font-size: 0.9rem;
    }
    
    .service-card,
    .additional-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon,
    .additional-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .service-icon svg,
    .additional-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .additional-icon i {
        font-size: 2rem;
    }
    
    .why-image-main img {
        height: 350px;
    }
    
    .why-badge {
        padding: 0.75rem 1rem;
        bottom: 1rem;
        left: 1rem;
    }
    
    .why-reason {
        gap: 1rem;
    }
    
    .why-reason-number {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .services-cta-content h2 {
        font-size: 1.75rem;
    }
    
    .services-cta-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .services-btn-primary,
    .services-btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .service-pattern-1,
    .service-pattern-2,
    .service-pattern-3 {
        display: none;
    }
}

