/* ==========================================
   SHARED HERO STYLES (All Pages except Index)
   ========================================== */

.about-hero,
.contact-hero,
.legal-hero,
.service-hero {
    background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
}

.about-hero::before,
.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
    opacity: 0.4;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
    opacity: 0.4;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 30%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
    opacity: 0.4;
}

/* Hero Decoration */
.hero-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-circle-1 {
    width: 250px;
    height: 250px;
    top: -80px;
    right: -80px;
}

.hero-circle-2 {
    width: 150px;
    height: 150px;
    bottom: -40px;
    left: -40px;
}

/* Hero Content */
.about-hero .hero-content,
.contact-hero .hero-content,
.legal-hero .hero-content,
.service-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: white;
}

.about-hero .hero-badge,
.contact-hero .hero-badge,
.legal-hero .hero-badge,
.service-hero .hero-badge {
    animation: none;
}

.hero-badge svg {
    width: 14px;
    height: 14px;
    opacity: 0.9;
}

/* Hero Title */
.about-hero .hero-title,
.contact-hero .hero-title,
.legal-hero .hero-title,
.service-hero .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
}

/* Hero Description */
.about-hero .hero-description,
.contact-hero .hero-description,
.legal-hero .hero-description,
.service-hero .hero-description {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    font-weight: 400;
}

/* Hero CTA */
.hero-cta {
    margin-top: 1.5rem;
}

/* ==========================================
   RESPONSIVE STYLES
   ========================================== */

@media (min-width: 768px) {

    .about-hero,
    .contact-hero,
    .legal-hero,
    .service-hero {
        padding: 4.5rem 0;
        min-height: 380px;
    }

    .about-hero .hero-title,
    .contact-hero .hero-title,
    .legal-hero .hero-title,
    .service-hero .hero-title {
        font-size: 2.75rem;
    }

    .about-hero .hero-description,
    .contact-hero .hero-description,
    .legal-hero .hero-description,
    .service-hero .hero-description {
        font-size: 1.125rem;
    }

    .hero-circle-1 {
        width: 320px;
        height: 320px;
        top: -100px;
        right: -100px;
    }

    .hero-circle-2 {
        width: 200px;
        height: 200px;
        bottom: -60px;
        left: -60px;
    }
}

@media (min-width: 1024px) {

    .about-hero,
    .contact-hero,
    .legal-hero,
    .service-hero {
        padding: 5.5rem 0;
        min-height: 420px;
    }

    .about-hero .hero-title,
    .contact-hero .hero-title,
    .legal-hero .hero-title,
    .service-hero .hero-title {
        font-size: 3.25rem;
    }

    .hero-circle-1 {
        width: 400px;
        height: 400px;
    }

    .hero-circle-2 {
        width: 250px;
        height: 250px;
    }
}

@media (min-width: 1280px) {

    .about-hero .hero-title,
    .contact-hero .hero-title,
    .legal-hero .hero-title,
    .service-hero .hero-title {
        font-size: 3.5rem;
    }
}
