/* ============================================================
   Services Page - Premium UI/UX Design
   Apple-inspired, modern ve profesyonel tasarım
   ============================================================ */

:root {
    --services-accent: #c9a227;
    --services-accent-light: #e8d48a;
    --services-dark: #0a0a0a;
    --services-light: #fafaf8;
    --services-gray: #6b6b6b;
}

/* ============================================================
   Hero Section V2 - Minimal & Elegant
   ============================================================ */

.services-hero-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 100px;
    overflow: hidden;
}

.services-hero-v2__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.services-hero-v2__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        #0a0a0a 0%, 
        #1a1814 25%,
        #0d0c0a 50%,
        #151310 75%,
        #0a0a0a 100%
    );
}

.services-hero-v2__pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(201, 162, 39, 0.05) 0%, transparent 40%);
    opacity: 1;
}

.services-hero-v2__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
    color: #fff;
}

.services-hero-v2__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    border-radius: 100px;
    background: rgba(201, 162, 39, 0.12);
    border: 1px solid rgba(201, 162, 39, 0.25);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--services-accent-light);
    margin-bottom: 32px;
}

.services-hero-v2__title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 600;
    line-height: 1.05;
    margin: 0 0 28px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero-v2__description {
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 auto 48px;
    max-width: 700px;
}

.services-hero-v2__stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.services-hero-v2__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.services-hero-v2__stat-value {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    color: var(--services-accent);
    line-height: 1;
}

.services-hero-v2__stat-label {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.services-hero-v2__scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounceDown 2s ease-in-out infinite;
}

.services-hero-v2__scroll-indicator svg {
    transform: rotate(180deg);
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   Services Showcase - Premium Cards
   ============================================================ */

.services-showcase {
    position: relative;
    padding: 0;
    background: var(--services-light);
}

.services-showcase__container {
    max-width: 100%;
}

/* Service Showcase Card */
.service-showcase-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    position: relative;
}

.service-showcase-card--reverse {
    direction: rtl;
}

.service-showcase-card--reverse > * {
    direction: ltr;
}

/* Visual Side */
.service-showcase-card__visual {
    position: relative;
    overflow: hidden;
}

.service-showcase-card__image-wrapper {
    position: absolute;
    inset: 0;
}

.service-showcase-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-showcase-card:hover .service-showcase-card__image {
    transform: scale(1.05);
}

.service-showcase-card__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
}

.service-showcase-card__number {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
}

.service-showcase-card__number span {
    font-size: clamp(80px, 12vw, 160px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.service-showcase-card--reverse .service-showcase-card__number {
    left: auto;
    right: 40px;
}

/* Content Side */
.service-showcase-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(48px, 8vw, 100px);
    background: #fff;
}

.service-showcase-card__header {
    margin-bottom: 32px;
}

.service-showcase-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--services-accent) 0%, var(--services-accent-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 12px 40px rgba(201, 162, 39, 0.25);
}

.service-showcase-card__icon i {
    font-size: 28px;
    color: #fff;
}

.service-showcase-card__subtitle {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--services-accent);
    margin-bottom: 12px;
}

.service-showcase-card__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 16px;
    color: var(--services-dark);
    letter-spacing: -0.02em;
}

.service-showcase-card__tagline {
    font-size: 18px;
    color: var(--services-gray);
    font-style: italic;
    margin: 0;
}

.service-showcase-card__description {
    font-size: 17px;
    line-height: 1.85;
    color: #555;
    margin: 0 0 40px;
    max-width: 560px;
}

/* Features Grid */
.service-showcase-card__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.service-feature-mini {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background: var(--services-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-feature-mini:hover {
    background: #f0ede5;
    transform: translateX(4px);
}

.service-feature-mini__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.service-feature-mini__icon i {
    font-size: 18px;
    color: var(--services-accent);
}

.service-feature-mini__text strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--services-dark);
    line-height: 1.4;
}

/* Actions */
.service-showcase-card__actions {
    display: flex;
    gap: 16px;
}

.service-showcase-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--services-dark);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-showcase-card__btn:hover {
    background: var(--services-accent);
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(201, 162, 39, 0.3);
}

.service-showcase-card__btn svg {
    transition: transform 0.3s ease;
}

.service-showcase-card__btn:hover svg {
    transform: translateX(4px);
}

/* Empty State */
.services-empty-state {
    text-align: center;
    padding: 120px 24px;
    background: #fff;
}

.services-empty-state__icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--services-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.services-empty-state__icon i {
    font-size: 40px;
    color: var(--services-gray);
}

.services-empty-state h3 {
    font-size: 24px;
    margin: 0 0 12px;
    color: var(--services-dark);
}

.services-empty-state p {
    font-size: 16px;
    color: var(--services-gray);
    margin: 0;
}

/* ============================================================
   Why Choose Us Section
   ============================================================ */

.services-why-us {
    padding: clamp(80px, 12vw, 140px) 24px;
    background: linear-gradient(180deg, var(--services-light) 0%, #fff 100%);
}

.services-why-us__container {
    max-width: 1280px;
    margin: 0 auto;
}

.services-why-us__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.services-why-us__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--services-accent);
    margin-bottom: 16px;
}

.services-why-us__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 20px;
    color: var(--services-dark);
}

.services-why-us__description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--services-gray);
    margin: 0;
}

.services-why-us__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

/* Why Us Card */
.why-us-card {
    text-align: center;
    padding: 40px 28px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.why-us-card__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(201, 162, 39, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--services-accent);
    transition: all 0.4s ease;
}

.why-us-card:hover .why-us-card__icon {
    background: linear-gradient(135deg, var(--services-accent) 0%, var(--services-accent-light) 100%);
    color: #fff;
    transform: scale(1.1);
}

.why-us-card__title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--services-dark);
}

.why-us-card__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--services-gray);
    margin: 0;
}

/* ============================================================
   CTA Section V2
   ============================================================ */

.services-cta-v2 {
    position: relative;
    padding: clamp(80px, 12vw, 140px) 24px;
    overflow: hidden;
}

.services-cta-v2__container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 40px;
    overflow: hidden;
}

.services-cta-v2__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--services-dark) 0%, #1a1a1a 50%, var(--services-dark) 100%);
}

.services-cta-v2__pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(201, 162, 39, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(201, 162, 39, 0.1) 0%, transparent 35%);
}

.services-cta-v2__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: clamp(60px, 10vw, 100px) clamp(32px, 6vw, 80px);
    color: #fff;
}

.services-cta-v2__title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    color: antiquewhite;
}

.services-cta-v2__description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 auto 40px;
    max-width: 600px;
}

.services-cta-v2__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.services-cta-v2__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-cta-v2__btn--primary {
    background: linear-gradient(135deg, var(--services-accent) 0%, var(--services-accent-light) 100%);
    color: var(--services-dark);
}

.services-cta-v2__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(201, 162, 39, 0.4);
}

.services-cta-v2__btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.services-cta-v2__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   Responsive Design
   ============================================================ */

@media (max-width: 1200px) {
    .services-why-us__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .service-showcase-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .service-showcase-card--reverse {
        direction: ltr;
    }
    
    .service-showcase-card__visual {
        min-height: 50vh;
    }
    
    .service-showcase-card__number {
        bottom: 24px;
        left: 24px;
    }
    
    .service-showcase-card--reverse .service-showcase-card__number {
        left: 24px;
        right: auto;
    }
    
    .service-showcase-card__number span {
        font-size: 100px;
    }
    
    .service-showcase-card__content {
        padding: 48px 32px;
    }
    
    .service-showcase-card__features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-hero-v2 {
        padding: 120px 20px 80px;
    }
    
    .services-hero-v2__stats {
        gap: 32px;
    }
    
    .services-hero-v2__scroll-indicator {
        display: none;
    }
    
    .service-showcase-card__visual {
        min-height: 40vh;
    }
    
    .service-showcase-card__content {
        padding: 40px 24px;
    }
    
    .services-why-us__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .why-us-card {
        padding: 32px 24px;
    }
    
    .services-cta-v2__container {
        border-radius: 24px;
    }
    
    .services-cta-v2__content {
        padding: 48px 24px;
    }
    
    .services-cta-v2__actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .services-cta-v2__btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-hero-v2__eyebrow {
        padding: 8px 16px;
        font-size: 10px;
    }
    
    .services-hero-v2__stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .service-showcase-card__icon {
        width: 56px;
        height: 56px;
    }
    
    .service-showcase-card__icon i {
        font-size: 24px;
    }
    
    .service-showcase-card__btn {
        width: 100%;
        justify-content: center;
    }
}
