/* Services Page Styles */

/* Hero Section */
.services-hero {
    position: relative;
    padding: 10rem 0 6rem;
    margin-top: 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    text-align: center;
}

.services-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.services-hero .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(65, 65, 66, 0.9) 0%, rgba(210, 174, 52, 0.7) 100%);
}

.services-hero .container {
    position: relative;
    z-index: 2;
}

.services-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
}

.services-hero .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Detail Section */
.services-detail-section {
    padding: 6rem 0;
    background: var(--white);
}

.services-grid-large {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.service-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-card-large.reverse {
    direction: rtl; /* Simple way to swap columns visually */
}

.service-card-large.reverse .service-content {
    direction: ltr; /* Reset text direction */
}

.service-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-large:hover .service-img img {
    transform: scale(1.05);
}

.service-content {
    padding: 1rem;
}

.service-content .icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.service-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--dark-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--dark);
    font-weight: 500;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: var(--gray);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--dark-light);
    font-size: 1.1rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(210, 174, 52, 0.2);
    margin-bottom: 1rem;
    line-height: 1;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--dark-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--dark);
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

/* Responsive */
@media (max-width: 992px) {
    .service-card-large,
    .service-card-large.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 2rem;
    }

    .service-img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .services-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   Image Sliders
   ============================================ */
.services-hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.services-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.services-hero-slide.active {
    opacity: 1;
}

.service-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.service-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.service-slide.active {
    opacity: 1;
}

.service-slide:first-child {
    position: relative;
}
