/* Services Pages Hero Section Styles */
.hero-section {
    position: relative;
    width: 100%;
    min-height: calc(100vh - var(--header-height, 60px));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    overflow: hidden;
    color: white;
    box-sizing: border-box;
}

.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform-origin: center center;
}

.hero-section::before {
    z-index: 0;
    animation: pulse 20s infinite;
}

.hero-section::after {
    z-index: 1;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-wrapper {
    width: 120px;
    height: 120px;
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.title-wrapper {
    margin-bottom: 2.5rem;
    text-align: center;
}

.title-wrapper h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    color: white;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-wrapper .area {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-top: 0.8rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Mobile Small (320px - 480px) */
@media screen and (max-width: 480px) {
    .hero-section {
        padding: 2rem 1rem;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }

    .title-wrapper h1 {
        font-size: 1.8rem;
    }

    .title-wrapper .area {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
        margin-top: 0.4rem;
    }

    .hero-text {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}

/* Mobile Large (481px - 768px) */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .hero-section {
        padding: 3rem 1.5rem;
    }

    .icon-wrapper {
        width: 90px;
        height: 90px;
        margin-bottom: 2rem;
    }

    .title-wrapper h1 {
        font-size: 2.2rem;
    }

    .title-wrapper .area {
        font-size: 1.1rem;
        letter-spacing: 2px;
        margin-top: 0.6rem;
    }

    .hero-text {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Tablet (769px - 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .hero-section {
        padding: 3.5rem 2rem;
    }

    .icon-wrapper {
        width: 100px;
        height: 100px;
        margin-bottom: 2.25rem;
    }

    .title-wrapper h1 {
        font-size: 2.5rem;
    }

    .title-wrapper .area {
        font-size: 1.2rem;
        letter-spacing: 2.5px;
    }

    .hero-text {
        font-size: 1.05rem;
        line-height: 1.5;
    }
}

/* Desktop (1025px+) */
@media screen and (min-width: 1025px) {
    .hero-section {
        padding: 4rem 2rem;
    }

    .icon-wrapper {
        width: 120px;
        height: 120px;
    }

    .title-wrapper h1 {
        font-size: 3rem;
    }

    .title-wrapper .area {
        font-size: 1.3rem;
        letter-spacing: 3px;
    }

    .hero-text {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

/* Landscape mode specific adjustments */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        padding: 2rem 1rem;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .title-wrapper {
        margin-bottom: 1.5rem;
    }

    .title-wrapper h1 {
        font-size: 2rem;
    }

    .title-wrapper .area {
        font-size: 1rem;
        margin-top: 0.4rem;
    }

    .hero-text {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}
