/* =====================================================
   LICENCES & PERMITS HERO
===================================================== */

.licence-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px);
    min-height: 650px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
}

/* Background video */
.licence-hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Dark overlay */
.licence-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Hero content */
.licence-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    padding: 40px 20px;
    text-align: center;
    color: #fff;
}

/* Main heading */
.licence-hero-content h1 {
    margin: 0 0 25px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(70px, 8vw, 120px);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -3px;
    color: #fff;
}

/* Subtitle */
.licence-hero-content p {
    margin: 0 auto 35px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

/* Get Started button */
.licence-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 185px;
    height: 50px;

    background: #f47b00;;
    color: #fff;

    border-radius: 30px;

    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.licence-btn:hover {
    background: #0d68d1;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(20, 121, 232, 0.35);
}

/* Rating */
.licence-rating {
    margin-top: 30px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;

    font-family: 'Poppins', sans-serif;
}

.licence-rating .stars {
    font-size: 16px;
    letter-spacing: 2px;
    color: #fff;
}

.licence-rating span {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .licence-hero {
        height: calc(100vh - 70px);
        min-height: 600px;
    }

    .licence-hero-content {
        padding: 30px 20px;
    }

    .licence-hero-content h1 {
        font-size: clamp(55px, 15vw, 80px);
        line-height: 1.02;
        letter-spacing: -2px;
        margin-bottom: 20px;
    }

    .licence-hero-content p {
        max-width: 350px;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .licence-btn {
        width: 175px;
        height: 48px;
        font-size: 14px;
    }

    .licence-rating {
        margin-top: 25px;
    }
}