/* Hero Section Styles - Development Page */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    background-color: transparent;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero-overlay);
    z-index: 1;
    opacity: 0.3;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 100%;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-title {
    font-size: clamp(32px, 5vw, 50px);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 24px;
    color: var(--color-text-white);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.title-line {
    display: block;
    opacity: 0.95;
}

.hero-title .title-part-1 {
    color: var(--color-text-white);
    display: block;
}

.hero-title .title-part-2 {
    color: var(--color-primary-light);
    display: block;
}

.hero-description {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 40px;
    max-width: 800px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.btn-request-quote {
    background: linear-gradient(135deg, #22c55e, var(--color-primary-light));
    color: var(--color-text-primary);
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-request-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.btn-book-consultation {
    background: transparent;
    color: var(--color-text-white);
    border: 2px solid var(--color-primary-light);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-book-consultation:hover {
    background-color: rgba(38, 198, 218, 0.1);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(38, 198, 218, 0.3);
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 500px;
        height: 70vh;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .hero-description {
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-request-quote,
    .btn-book-consultation {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 60vh;
    }

    .hero-content {
        padding: 20px 15px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .btn-request-quote,
    .btn-book-consultation {
        max-width: 100%;
        padding: 12px 24px;
        font-size: 14px;
    }
}

