/* Main Content */
.main-content {
    min-height: 100vh;
    background: linear-gradient(to bottom, #f9fafb, #ffffff);
}

/* Services Hero Section */
.services-hero {
    position: relative;
    background-color: var(--custom-blue);
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 1rem;
}

.services-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    color: #f8fafc;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    padding: 4rem 0;
}

.services-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    transform: translateY(0);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: var(--custom-blue);
}

.service-content p {
    color: #64748b;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 3rem;
}

.features-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
}

.feature-image {
    position: relative;
    width: 6rem;
    height: 6rem;
    margin: 0 auto 1.5rem;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #64748b;
}

/* Services CTA Section */
.services-cta {
    background-color: var(--custom-blue);
    padding: 4rem 0;
    text-align: center;
}

.services-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.services-cta p {
    color: #f1f5f9;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.services-cta .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.2s;
}

.services-cta .btn-white:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
}

.arrow-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.2s;
}

.btn-white:hover .arrow-icon {
    transform: translateX(4px);
}

/* Responsive Design */
@media (min-width: 768px) {
    .services-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 3rem 0;
    }

    .services-hero h1 {
        font-size: 2.5rem;
    }

    .services-hero p {
        font-size: 1.125rem;
    }

    .services-cta h2 {
        font-size: 1.75rem;
    }

    .services-cta p {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .services-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
} 