/* Services Page Styles */

/* Hero Section */
.services-hero {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: #fff;
    padding: 120px 4rem 80px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="white" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.5;
}

.services-hero-content {
    position: relative;
    z-index: 2;
}

.services-hero h1 {
    font-family: 'TMA-RoadRadio', 'Archivo Black', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    animation: fadeInDown 0.8s ease-out;
}

.services-hero p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Introduction Section */
.services-intro {
    background: #fff;
    padding: 80px 4rem;
}

.intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.intro-content p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
}

/* Services Grid */
.services-grid-section {
    background: #f9f9f9;
    padding: 100px 4rem;
}

.services-grid-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 4rem;
    text-transform: uppercase;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
    border-color: #000;
}

.service-icon {
    font-size: 3rem;
    color: #000;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2);
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    font-size: 0.9rem;
    font-weight: 300;
    padding: 0.6rem 0;
    color: #666;
    display: flex;
    align-items: center;
}

.service-features i {
    color: #000;
    margin-right: 0.8rem;
    font-size: 0.8rem;
}

.service-process {
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.service-process h4 {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    color: #000;
}

.service-process span {
    font-size: 0.85rem;
    font-weight: 300;
    color: #999;
    display: block;
}

/* Service Features Section */
.service-features-section {
    background: #fff;
    padding: 100px 4rem;
}

.features-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.service-features-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 4rem;
    text-transform: uppercase;
}

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

.feature-item {
    text-align: center;
    padding: 2.5rem;
    border-radius: 8px;
    background: #f9f9f9;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-item:hover {
    background: #fff;
    border-color: #000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-item p {
    font-size: 0.9rem;
    font-weight: 300;
    color: #666;
    line-height: 1.6;
}

/* Gallery Section */
.services-gallery {
    background: #fff;
    padding: 100px 4rem;
}

.gallery-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.services-gallery h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 3/4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.view-btn {
    background: #fff;
    color: #000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.view-btn:hover {
    background: #000;
    color: #fff;
    transform: scale(1.1);
}

/* Process Section */
.process-section {
    background: #f9f9f9;
    padding: 100px 4rem;
}

.process-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.process-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 4rem;
    text-transform: uppercase;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.process-number {
    width: 60px;
    height: 60px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.process-item p {
    font-size: 0.85rem;
    font-weight: 300;
    color: #666;
}

.process-arrow {
    font-size: 1.5rem;
    color: #999;
    margin: 0 -0.5rem;
}

/* CTA Section */
.cta-section {
    background: #000;
    color: #fff;
    padding: 80px 4rem;
    text-align: center;
}

.cta-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.cta-section p {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.btn-cta {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 1rem 3rem;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.15);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-hero {
        padding: 80px 2rem 60px;
    }

    .services-hero h1 {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: -0.5rem 0;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 60px 1.5rem 40px;
        margin-top: 70px;
    }

    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .services-intro,
    .services-grid-section,
    .service-features-section,
    .services-gallery,
    .process-section,
    .cta-section {
        padding: 60px 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    .services-grid-section h2,
    .service-features-section h2,
    .services-gallery h2,
    .process-section h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .service-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}
