/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 248, 248, 0.95) 100%),
                url('https://images.unsplash.com/photo-1562259949-e8e7689d7828?w=1920&auto=format&fit=crop') center/cover no-repeat;
    position: relative;
    background-attachment: fixed;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-neutral-700);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: var(--font-body);
}
.trust-chips {
    margin-top: 2rem;
}

.trust-chip {
    background-color: var(--color-white);
    border: 2px solid var(--color-neutral-200);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.trust-chip:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.trust-chip i {
    color: var(--color-primary);
    font-size: 1.1rem;
}

.hero-services-note {
    margin-top: 1rem;
    color: var(--color-neutral-500);
    font-family: var(--font-body);
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: var(--color-primary);
    color: var(--color-text);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-family: var(--font-body);
}

.hero-image-badge i {
    font-size: 1.25rem;
}

@media (max-width: 991px) {
    .hero-image {
        margin-top: 3rem;
    }
    
    .hero-cta {
        flex-direction: column !important;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .trust-chips {
        justify-content: center;
    }
}
