/* Services Hero Section */
.services-hero-section {
    position: relative;
    padding: 12rem 2rem 8rem;
    background-image: url('../images/portfolio-ozel.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 45, 69, 0.7);
    z-index: 1;
}

.services-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.services-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 3rem;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    max-width: 1200px;
}

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

.services-hero-left {
    display: flex;
    flex-direction: column;
}

.services-hero-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.services-hero-title {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-white);
    margin: 0;
    padding-top: 2rem;
}

.services-hero-description {
    font-size: 1rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
}

.services-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.services-hero-btn-primary {
    display: inline-block;
    background-color: var(--accent-orange);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(198, 40, 50, 0.4);
}

.services-hero-btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.services-hero-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Services Approach Section */
.services-approach-section {
    padding: 6rem 2rem;
    background-color: var(--primary-teal);
}

.services-approach-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-approach-header {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.services-approach-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.services-approach-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-white);
    margin-bottom: 1rem;
    opacity: 0.6;
}

.services-approach-line {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0.5rem 0 1.5rem;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s ease 0.3s;
}

.services-approach-line.animate {
    transform: scaleX(1);
}

.services-approach-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-white);
    line-height: 1.3;
    max-width: 900px;
    margin-top: 4.5rem;
}

.services-approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
    margin-top: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    align-items: stretch;
}

.services-approach-grid.animate {
    opacity: 1;
    transform: translateY(0);
}

.services-approach-image {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: 450px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: stretch;
    border-radius: 12px;
}

.services-approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.services-approach-card {
    background-color: var(--mid-navy);
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 12px;
    height: 100%;
    min-height: 0;
    max-height: 450px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.services-approach-card:hover {
    background-color: rgba(18, 48, 72, 0.95);
    transform: translateY(-4px);
}

.services-approach-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    color: var(--text-white);
}

.services-approach-icon .material-icons {
    font-size: 28px;
    color: currentColor;
}

.services-approach-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
}

.services-approach-card-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 1rem;
    margin-top: 0;
}

.services-approach-card-description {
    font-size: 0.95rem;
    font-weight: 200;
    color: rgba(218, 217, 217, 0.8);
    line-height: 1.7;
    margin: 0;
    margin-top: auto;
}

/* Services Different Section */
.services-different-section {
    padding: 6rem 2rem;
    background-color: var(--bg-card);
}

.services-different-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-different-header {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.services-different-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.services-different-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light-teal);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.services-different-subtitle::before {
    content: '';
    width: 20px;
    height: 1px;
    background-color: var(--text-gray);
    display: block;
    flex-shrink: 0;
}

.services-different-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 0;
}

.services-different-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    margin-top: 6rem;
}

.services-different-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.services-different-accordion {
    display: flex;
    flex-direction: column;
}

.services-different-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-different-item.active {
    border-bottom: 1px solid var(--text-dark);
}

.services-different-item:last-child {
    border-bottom: none;
}

.services-different-item.active:last-child {
    border-bottom: 1px solid var(--text-dark);
}

.services-different-item-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-gray);
    padding: 1.5rem 0;
    margin: 0;
    transition: color 0.3s ease;
}

.services-different-item.active .services-different-item-title {
    color: var(--text-dark);
}

.services-different-item-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0;
}

.services-different-item.active .services-different-item-content {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.services-different-item-content p {
    font-size: 0.9rem;
    font-weight: 200;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

.services-different-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    border-radius: 12px;
    transition: min-height 0.3s ease, max-height 0.3s ease;
}

.services-different-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: opacity 0.3s ease;
}

/* Responsive */
@media (max-width: 968px) {
    .services-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .services-approach-grid {
        grid-template-columns: 1fr;
    }
    
    .services-approach-image {
        min-height: 300px;
        order: -1;
    }
    
    .services-approach-card {
        min-height: auto;
        padding: 2rem;
    }
    
    .services-different-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-different-image {
        order: -1;
        min-height: 300px;
    }
    
    .services-stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-hero-section {
        padding: 10rem 1.5rem 4rem;
    }
    
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .services-hero-description {
        font-size: 1.1rem;
    }
    
    .services-approach-section,
    .services-different-section,
    .services-stats-section {
        padding: 4rem 1.5rem;
    }
    
    .services-approach-card {
        padding: 2rem;
    }
}

