/* ================= COMMON HERO SECTION ================= */
.page-hero {
    padding: 80px 0 100px;
    color: #fff;
    position: relative;
    overflow: hidden;

    /* default bg (fallback) */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark overlay for text readability */
/*.page-hero::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background: linear-gradient(*/
/*        155deg,*/
/*        rgba(13, 110, 253, 0.10),*/
/*        #0046FF,*/
/*        rgba(13, 202, 240, 0.10)*/
/*    );*/

/*    z-index: 0;*/
/*}*/

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;

    /* VERY LIGHT BLACK OVERLAY */
    background: rgba(0, 0, 0, 0.30);

    z-index: 0;
}


/* Pattern overlay (same as your current SVG) */
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
    z-index: 1;
}

.page-hero .hero-content {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Badge */
.page-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    margin-bottom: 30px;
}

/* Heading */
.page-hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #e6f6ff;
    text-shadow: 0 6px 16px rgba(0,0,0,0.4);
    font-weight: 900;
}

/* Description */
.page-hero .hero-description {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    opacity: 0.95;
}

/* Features */
.page-hero .hero-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
}

.page-hero .hero-feature {
    min-width: 150px;
    padding: 20px;
    text-align: center;
    background: rgba(255,255,255,0.12);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s ease;
}

.page-hero .hero-feature:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.18);
}

.page-hero .hero-feature i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.4rem;
    }

    .page-hero .hero-description {
        font-size: 1.1rem;
    }
}



/* =========================================
   REVIEW FORM - PREMIUM DESIGN
========================================= */

.hakim-review-form {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(10,108,124,0.1);
    max-width: 600px;
    margin: auto;
    transition: var(--transition-base);
}

.hakim-review-form:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.review-title {
    font-size: var(--text-2xl);
    color: var(--deep-blue);
    margin-bottom: var(--space-xl);
    text-align: center;
}

/* Group */
.review-group {
    margin-bottom: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.review-group label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--deep-blue);
}

/* Inputs */
.hakim-review-form input,
.hakim-review-form textarea {
    padding: 14px 16px;
    border-radius: var(--border-radius-sm);
    border: 2px solid var(--gray-light);
    font-family: 'Inter', sans-serif;
    transition: var(--transition-base);
    background: var(--beige);
}

.hakim-review-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Focus */
.hakim-review-form input:focus,
.hakim-review-form textarea:focus {
    outline: none;
    border-color: var(--emerald);
    box-shadow: 0 0 0 4px rgba(63,167,150,0.15);
    background: white;
}

/* =========================================
   STAR RATING
========================================= */

.star-rating {
    display: flex;
    gap: 8px;
    font-size: 28px;
    cursor: pointer;
}

.star {
    color: #d1d5db;
    transition: 0.2s;
}

/* Active stars */
.star.active {
    color: #FFC107;
    transform: scale(1.15);
}

/* Hover animation */
.star:hover {
    transform: scale(1.2);
}

/* =========================================
   BUTTON
========================================= */

.hakim-review-form button {
    width: 100%;
    margin-top: var(--space-md);
}