/* ===================================
   SERVICES PAGE HERO
   =================================== */

.services-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #1a1a1a 0%, var(--primary-dark-grey) 60%, #252525 100%);
    overflow: hidden;
    margin-top: 110px; /* Account for header + announcement bar */
}

/* Elegant geometric pattern */
.services-hero .hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(30deg, rgba(217, 180, 95, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(217, 180, 95, 0.03) 87.5%, rgba(217, 180, 95, 0.03)),
        linear-gradient(150deg, rgba(217, 180, 95, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(217, 180, 95, 0.03) 87.5%, rgba(217, 180, 95, 0.03)),
        linear-gradient(30deg, rgba(217, 180, 95, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(217, 180, 95, 0.03) 87.5%, rgba(217, 180, 95, 0.03)),
        linear-gradient(150deg, rgba(217, 180, 95, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(217, 180, 95, 0.03) 87.5%, rgba(217, 180, 95, 0.03));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    z-index: 1;
    opacity: 0.6;
}

/* Subtle radial gradient */
.services-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(26, 26, 26, 0.5) 100%);
    z-index: 2;
}

/* Content styling */
.services-hero .container {
    position: relative;
    z-index: 10;
}

.services-hero .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl) var(--spacing-md);
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.services-hero .hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.8px;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    position: relative;
}

/* Gold accent underline */
.services-hero .hero-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
    animation: expandWidth 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.4s;
    transform-origin: center;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

.services-hero .hero-subtitle {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    letter-spacing: 0.4px;
    line-height: 1.6;
    max-width: 650px;
    margin: var(--spacing-md) auto 0;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

/* Section divider decoration */
.services-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(217, 180, 95, 0.3) 50%, transparent 100%);
}

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */

@media (max-width: 1024px) {
    .services-hero {
        min-height: 40vh;
    }
}

@media (max-width: 768px) {
    .services-hero {
        min-height: 35vh;
        margin-top: 95px;
    }
    
    .services-hero .hero-content {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .services-hero .hero-title::after {
        bottom: -10px;
        width: 60px;
    }
}

@media (max-width: 480px) {
    .services-hero {
        min-height: 30vh;
    }
    
    .services-hero .hero-content {
        padding: var(--spacing-md) var(--spacing-sm);
    }
}

/* ===================================
   ACCESSIBILITY
   =================================== */

@media (prefers-reduced-motion: reduce) {
    .services-hero .hero-content,
    .services-hero .hero-title::after {
        animation: none !important;
    }
}
