.hero-section {
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('/Images/bg7.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient( 45deg, rgba(228, 157, 52, 0.1) 0%, rgba(168, 36, 36, 0.1) 100% );
    }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 3rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--white);
}

span.suffix {
    color: var(--primary) !important;
    -webkit-text-fill-color: var(--primary) !important;
    background: none !important;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@media (max-width: 768px) {
    .services-hero {
        height: 70vh;
        background-attachment: scroll;
    }
    
    .services-hero::after {
        height: 100px;
    }
    
    .services-hero-subtitle {
        padding: 1.2rem;
    }
}
.service-card-full {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--neutral);
    display: flex;
    flex-direction: column;
}

.service-card-full:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-img-wrapper {
    /* Remove fixed height */
    height: 0;
    padding-bottom: 66.67%; 
    overflow: hidden;
    position: relative;
    flex: 0 0 auto;
}

.service-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-full:hover .service-img-wrapper img {
    transform: scale(1.1);
}

.service-icon-badge {
    position: absolute;
    bottom: -25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(228, 157, 52, 0.3);
    z-index: 1; 
}

.service-content-full {
    padding: 40px 25px 30px;
    flex: 1 0 auto; 
    display: flex;
    flex-direction: column;
}

.service-title-full {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.service-desc-full {
    color: var(--neutral-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1; 
}

.service-btn {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-btn:hover {
    color: var(--primary-dark);
    gap: 0.8rem;
}

/* Section Header */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

/* Animations are reused from site.css but making sure they work here */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.number {
    color: var(--primary);
}

.number_link {
    text-decoration: none;
}
