/* ===================================
   SERVICES PAGE - PROFESSIONAL DESIGN
   =================================== */

/* Hero Section - Full Screen with Video */
.services-hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.services-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&auto=format&fit=crop&q=80') center/cover no-repeat;
}

.services-hero .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    opacity: 1 !important;
}

.services-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
    pointer-events: none;
}

.services-hero .hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.services-hero .container {
    text-align: center;
}

.services-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 600;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.services-hero-subtitle {
    font-size: 1.25rem;
    color: var(--white);
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Services Overview */
.services-overview {
    padding: 8rem 0;
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.service-block {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 8px;
    border: 1px solid var(--silver);
    transition: var(--transition);
    cursor: pointer;
}

.service-block:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 2rem;
    transition: var(--transition-fast);
}

.service-block:hover .service-icon {
    transform: translateY(-4px);
}

.service-block-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 600;
}

.service-block-desc {
    color: var(--gray);
    line-height: 1.7;
    font-size: 1.0625rem;
}

/* Service Detail Sections */
.service-detail {
    padding: 8rem 0;
    background: var(--white);
}

.service-detail.alternate {
    background: var(--off-white);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.service-detail-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    border: 1px solid #E2E8F0;
    background: #E2E8F0;
    height: 480px;
    position: relative;
    width: 100%;
}

.service-detail-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

.service-detail-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    color: var(--dark);
    font-weight: 600;
}

.service-detail-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 2rem;
}

.service-detail-list {
    list-style: none;
    padding: 0;
}

.service-detail-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--gray);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.service-detail-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.5rem;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

/* Process Section */
.process-section {
    padding: 8rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--dark);
}

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

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    color: var(--silver);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.step-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.step-desc {
    color: var(--gray);
    line-height: 1.7;
    font-size: 1.0625rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 8rem 0;
    background: var(--off-white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.why-item h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.why-item p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 1.0625rem;
}

/* Client Support */
.client-support {
    padding: 8rem 0;
    background: var(--white);
}

.support-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.support-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    color: var(--dark);
    line-height: 1.3;
}

.support-text {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.8;
}

/* CTA Section */
.services-cta {
    padding: 8rem 0;
    background: var(--off-white);
}

.services-cta .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-cta .cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2.5rem;
    color: var(--dark);
}

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

.services-cta .btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.services-cta .btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

/* Responsive */
@media (max-width: 968px) {
    /* Hero */
    .services-hero {
        height: auto;
        min-height: 100vh;
        padding: 8rem 0 4rem;
    }
    
    .services-hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .services-hero-subtitle {
        font-size: 1.125rem;
    }
    
    /* Services Overview */
    .services-overview {
        padding: 5rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-block {
        padding: 3rem 2rem;
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1.75rem;
    }
    
    .service-block-title {
        font-size: 1.5rem;
        margin-bottom: 0.875rem;
    }
    
    .service-block-desc {
        font-size: 1rem;
    }
    
    /* Service Detail */
    .service-detail {
        padding: 5rem 0;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-detail-image {
        height: 400px;
        order: -1;
    }
    
    .service-detail.alternate .service-detail-image {
        order: -1;
    }
    
    .service-detail-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
    }
    
    .service-detail-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .service-detail-list li {
        padding: 0.875rem 0;
        padding-left: 1.75rem;
        font-size: 1rem;
    }
    
    .service-detail-list li::before {
        top: 1.25rem;
    }
    
    /* Process */
    .process-section {
        padding: 5rem 0;
    }
    
    .section-header {
        margin-bottom: 3.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .step-number {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }
    
    .step-title {
        font-size: 1.375rem;
        margin-bottom: 0.75rem;
    }
    
    .step-desc {
        font-size: 1rem;
    }
    
    /* Why Choose */
    .why-choose-section {
        padding: 5rem 0;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .why-item h3 {
        font-size: 1.375rem;
        margin-bottom: 0.75rem;
    }
    
    .why-item p {
        font-size: 1rem;
    }
    
    /* Client Support */
    .client-support {
        padding: 5rem 0;
    }
    
    .support-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
        margin-bottom: 1.5rem;
    }
    
    .support-text {
        font-size: 1rem;
    }
    
    /* CTA */
    .services-cta {
        padding: 5rem 0;
    }
    
    .services-cta .cta-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        margin-bottom: 2rem;
    }
    
    .services-cta .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .services-cta .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    /* Hero */
    .services-hero {
        padding: 7rem 0 3rem;
    }
    
    .services-hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
        margin-bottom: 1.25rem;
    }
    
    .services-hero-subtitle {
        font-size: 1rem;
    }
    
    /* Services Overview */
    .services-overview {
        padding: 4rem 0;
    }
    
    .services-grid {
        gap: 1.5rem;
    }
    
    .service-block {
        padding: 2.5rem 1.75rem;
        border-radius: 6px;
    }
    
    .service-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1.5rem;
    }
    
    .service-block-title {
        font-size: 1.375rem;
        margin-bottom: 0.75rem;
    }
    
    .service-block-desc {
        font-size: 0.9375rem;
    }
    
    /* Service Detail */
    .service-detail {
        padding: 4rem 0;
    }
    
    .service-detail-grid {
        gap: 2rem;
    }
    
    .service-detail-image {
        height: 300px;
        border-radius: 6px;
    }
    
    .service-detail-title {
        font-size: clamp(1.75rem, 8vw, 2rem);
        margin-bottom: 1.25rem;
    }
    
    .service-detail-text {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }
    
    .service-detail-list li {
        padding: 0.75rem 0;
        padding-left: 1.5rem;
        font-size: 0.9375rem;
    }
    
    .service-detail-list li::before {
        top: 1.125rem;
        width: 5px;
        height: 5px;
    }
    
    /* Process */
    .process-section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .process-steps {
        gap: 1.75rem;
    }
    
    .process-step {
        padding: 1.25rem;
    }
    
    .step-number {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .step-title {
        font-size: 1.25rem;
        margin-bottom: 0.625rem;
    }
    
    .step-desc {
        font-size: 0.9375rem;
    }
    
    /* Why Choose */
    .why-choose-section {
        padding: 4rem 0;
    }
    
    .why-choose-grid {
        gap: 2rem;
    }
    
    .why-item h3 {
        font-size: 1.25rem;
        margin-bottom: 0.625rem;
    }
    
    .why-item p {
        font-size: 0.9375rem;
    }
    
    /* Client Support */
    .client-support {
        padding: 4rem 0;
    }
    
    .support-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
        margin-bottom: 1.25rem;
    }
    
    .support-text {
        font-size: 0.9375rem;
    }
    
    /* CTA */
    .services-cta {
        padding: 4rem 0;
    }
    
    .services-cta .cta-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 1.5rem;
    }
    
    .services-cta .cta-buttons {
        gap: 0.875rem;
    }
}

@media (max-width: 480px) {
    .services-hero-title {
        font-size: 2rem;
    }
    
    .service-block {
        padding: 2rem 1.5rem;
    }
    
    .service-detail-image {
        height: 250px;
    }
    
    .step-number {
        font-size: 2rem;
    }
}
