﻿/* =====================================================
   PREMIUM COMMON HERO
===================================================== */

.page-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 560px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

    /* Dark Overlay */
    .page-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient( 90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.58) 45%, rgba(0, 0, 0, 0.18) 100% );
    }

    /* Container */
    .page-hero .container {
        position: relative;
        z-index: 2;
    }

/* Content Box */
.page-hero-content {
    max-width: 620px;
    padding: 38px;
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

/* Badge */
.page-hero-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 7px 16px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    border-radius: 999px;
}

/* Heading */
.page-hero h1 {
    margin-bottom: 18px;
    color: #fff;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
}

/* Description */
.page-hero p {
    margin-bottom: 24px;
    color: rgba(255,255,255,0.92);
    font-size: 16px;
    line-height: 1.85;
}

/* Buttons */
.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 25px;
}

    .page-hero-actions .btn {
        padding: 12px 28px;
        border-radius: 999px;
        font-weight: 700;
        transition: 0.3s ease;
    }

/* Breadcrumb */
.page-breadcrumb {
    margin-top: 20px;
    color: rgba(255,255,255,0.88);
    font-size: 14px;
}

    .page-breadcrumb a {
        color: #fff;
        font-weight: 600;
        text-decoration: none;
    }

        .page-breadcrumb a:hover {
            color: var(--accent);
        }

/* =====================================================
   HERO INQUIRY FORM
===================================================== */

.hero-inquiry-box {
    position: absolute;
    left: 50%;
    bottom: -60px;
    z-index: 20;
    width: 95%;
    max-width: 1150px;
    padding: 24px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transform: translateX(-50%);
}

    .hero-inquiry-box input,
    .hero-inquiry-box select {
        width: 100%;
        height: 48px;
        padding: 0 14px;
        border: 1px solid #ddd;
        border-radius: 10px;
        font-size: 14px;
    }

.hero-submit-btn {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    transition: 0.3s ease;
}

    .hero-submit-btn:hover {
        transform: translateY(-2px);
    }

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 991px) {

    .page-hero {
        min-height: auto;
        padding: 90px 0;
    }

    .page-hero-content {
        max-width: 100%;
    }

    .hero-inquiry-box {
        position: static;
        width: 100%;
        margin-top: 30px;
        transform: none;
    }
}

@media (max-width: 768px) {

    .page-hero {
        padding: 80px 0;
        text-align: center;
    }

    .page-hero-content {
        padding: 24px;
        border-radius: 18px;
    }

    .page-hero h1 {
        font-size: 30px;
    }

    .page-hero p {
        font-size: 14px;
        line-height: 1.75;
    }

    .page-hero-actions {
        flex-direction: column;
    }

        .page-hero-actions .btn {
            width: 100%;
        }

    .hero-inquiry-box {
        padding: 20px;
        border-radius: 16px;
    }
}
