/* Service Page Specific Styles */

/* Hero Section */
.hero-section {
    position: relative;
    width: 100vw;
    height: 300px;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 64, 128, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay h1 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
}

/* Service Selection */
.service-selection {
    max-width: var(--container-max);
    margin: 3rem auto;
    padding: 0 var(--container-padding-x);
}

.service-selection h3 {
    text-align: center;
    color: #173a62;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 2rem;
}

.service-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-btn {
    display: block;
    background: linear-gradient(135deg, #f8f9fa, #e3f2fd);
    border: 2px solid #e6eef7;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 24px rgba(10, 95, 165, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 64, 128, 0.1), transparent);
    transition: left 0.5s;
}

.service-btn:hover::before {
    left: 100%;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(10, 95, 165, 0.15);
    border-color: #004080;
}

.service-btn h4 {
    color: #0a3d66;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    position: relative;
    z-index: 1;
}

.service-btn p {
    color: #4d5b6a;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    position: relative;
    z-index: 1;
}

.btn-arrow {
    display: inline-block;
    color: #004080;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 200px;
    }
    
    .service-buttons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-btn {
        padding: 1.5rem 1rem;
    }
}

