/* ============================================================ */
/* REVIEWS PAGE — v5 redesign (Poppins + electric blue)         */
/* Loaded after styles.css; class/ID names preserved for        */
/* review-script.js compatibility                               */
/* ============================================================ */

body.reviews-page {
    background: var(--ink, #0a0a0a);
    color: var(--paper, #fafaf7);
    padding-bottom: 0;
}

.reviews-section {
    padding: 2rem 0 5rem;
    min-height: 100vh;
    position: relative;
    overflow-x: clip;
}
.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse at top, rgba(0, 102, 255, 0.12), transparent 70%);
    filter: blur(60px);
    pointer-events: auto;
    z-index: 0;
}
.reviews-section .container { position: relative; z-index: 1; }

/* ============================================================ */
/* BREADCRUMB + HEADER                                          */
/* ============================================================ */
.rv-crumb {
    font-size: 0.78rem;
    color: var(--paper-dim, #a0a0a5);
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}
.rv-crumb a {
    color: var(--paper-dim, #a0a0a5);
    text-decoration: none;
    transition: color 0.2s ease;
}
.rv-crumb a:hover { color: var(--pulse-bright, #4da3ff); }
.rv-crumb .sep { margin: 0 0.5rem; opacity: 0.4; }
.rv-crumb .now { color: var(--paper, #fafaf7); }

.rv-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--pulse-bright, #4da3ff);
    margin-bottom: 1rem;
}

.page-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}
.page-title {
    font-family: inherit;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--paper, #fafaf7);
    margin: 0 0 1rem;
}
.page-title em {
    font-style: normal;
    font-weight: 700;
    background: linear-gradient(135deg, var(--pulse-cyan, #00d4ff), var(--pulse, #0066ff));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.page-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(250, 250, 247, 0.7);
    margin: 0;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================ */
/* STAT CARDS                                                   */
/* ============================================================ */
.review-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}
.stat-card {
    position: relative;
    padding: 1.5rem 1rem;
    background: var(--ink-2, #111114);
    border: 1px solid var(--line, rgba(250, 250, 247, 0.08));
    border-radius: 16px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.4), transparent);
    opacity: 0.6;
}
.stat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 102, 255, 0.35);
    box-shadow: 0 14px 30px rgba(0, 102, 255, 0.18);
}
.stat-card-hero {
    background: linear-gradient(160deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.03));
    border-color: rgba(0, 102, 255, 0.35);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
}
.stat-number {
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--paper, #fafaf7);
    font-variant-numeric: tabular-nums;
    margin-bottom: 0.45rem;
}
.stat-card-hero .stat-number {
    background: linear-gradient(135deg, var(--paper, #fafaf7), var(--pulse-cyan, #00d4ff));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-unit {
    font-size: 0.55em;
    font-weight: 600;
    color: var(--pulse-bright, #4da3ff);
    margin-left: 0.15em;
    letter-spacing: 0;
}
.stat-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--paper-dim, #a0a0a5);
}

/* ============================================================ */
/* RATING BREAKDOWN                                             */
/* ============================================================ */
.rating-breakdown {
    position: relative;
    padding: 2rem;
    background: var(--ink-2, #111114);
    border: 1px solid var(--line, rgba(250, 250, 247, 0.08));
    border-radius: 18px;
    margin-bottom: 3rem;
    overflow: hidden;
}
.rating-breakdown::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.55), transparent);
}
.hud-bracket {
    position: absolute;
    width: 26px;
    height: 26px;
    pointer-events: auto;
    opacity: 0.55;
    z-index: 2;
}
.hud-bracket::before,
.hud-bracket::after {
    content: '';
    position: absolute;
    background: var(--pulse, #0066ff);
    box-shadow: 0 0 6px rgba(0, 102, 255, 0.4);
}
.hud-bracket::before { width: 100%; height: 1px; }
.hud-bracket::after  { height: 100%; width: 1px; }
.hud-bracket.hud-tl { top: 10px; left: 10px; }
.hud-bracket.hud-tl::before { top: 0; left: 0; }
.hud-bracket.hud-tl::after  { top: 0; left: 0; }
.hud-bracket.hud-br { bottom: 10px; right: 10px; }
.hud-bracket.hud-br::before { bottom: 0; right: 0; }
.hud-bracket.hud-br::after  { bottom: 0; right: 0; }

.rating-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;
}
.overall-rating {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-right: 2rem;
    border-right: 1px solid var(--line, rgba(250, 250, 247, 0.08));
}
.rating-number {
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(135deg, var(--paper, #fafaf7), var(--pulse-cyan, #00d4ff));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-variant-numeric: tabular-nums;
}
.rating-info { display: flex; flex-direction: column; gap: 0.4rem; }
.rating-stars {
    display: inline-flex;
    gap: 0.15rem;
    font-size: 1.05rem;
}
.rating-stars .star,
.rating-stars i,
.rating-stars svg {
    color: var(--pulse-bright, #4da3ff);
    filter: drop-shadow(0 0 4px rgba(77, 163, 255, 0.4));
    display: inline-block;
}
.rating-subtitle {
    font-size: 0.82rem;
    color: var(--paper-dim, #a0a0a5);
}
.rating-subtitle span {
    color: var(--paper, #fafaf7);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

/* Rating bars */
.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.rating-bar {
    display: grid;
    grid-template-columns: 42px 1fr 44px;
    gap: 0.75rem;
    align-items: center;
}
.bar-label {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--paper, #fafaf7);
    font-variant-numeric: tabular-nums;
}
.bar-label i,
.bar-label svg {
    color: var(--pulse-bright, #4da3ff);
    filter: drop-shadow(0 0 3px rgba(77, 163, 255, 0.3));
    flex-shrink: 0;
}
.bar-container {
    position: relative;
    height: 8px;
    background: rgba(250, 250, 247, 0.05);
    border-radius: 999px;
    overflow: hidden;
}
.bar-fill {
    position: absolute;
    inset: 0 auto 0 0;
    background: linear-gradient(90deg, var(--pulse, #0066ff), var(--pulse-cyan, #00d4ff));
    border-radius: 999px;
    box-shadow: 0 0 8px rgba(0, 102, 255, 0.35);
    transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.bar-count {
    font-size: 0.74rem;
    color: var(--paper-dim, #a0a0a5);
    text-align: right;
    font-variant-numeric: tabular-nums;
    font-weight: 500;
}

.rating-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line, rgba(250, 250, 247, 0.08));
}
.rating-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.82rem;
    color: rgba(250, 250, 247, 0.72);
}
.rating-meta-item svg { color: var(--pulse-bright, #4da3ff); flex-shrink: 0; }

/* ============================================================ */
/* LIST HEADER                                                  */
/* ============================================================ */
.reviews-list-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--line, rgba(250, 250, 247, 0.08));
}
.reviews-list-header h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: var(--paper, #fafaf7);
    margin: 0;
}
.reviews-list-note {
    font-size: 0.78rem;
    color: var(--paper-dim, #a0a0a5);
    font-weight: 500;
    letter-spacing: 0.02em;
    margin: 0;
    white-space: nowrap;
}

/* ============================================================ */
/* REVIEW CARD                                                  */
/* ============================================================ */
.reviews-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3.5rem;
}
.review-card {
    position: relative;
    padding: 1.75rem 1.5rem;
    background: var(--ink-2, #111114);
    border: 1px solid var(--line, rgba(250, 250, 247, 0.08));
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    overflow: hidden;
}
.review-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--pulse, #0066ff), var(--pulse-cyan, #00d4ff));
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.review-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 102, 255, 0.35);
    box-shadow: 0 16px 40px rgba(0, 102, 255, 0.18);
}
.review-card:hover::before { opacity: 1; }

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}
.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    min-width: 0;
}
.reviewer-name {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--paper, #fafaf7);
    letter-spacing: -0.005em;
}
.reviewer-name::before {
    content: attr(data-initial);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pulse, #0066ff), color-mix(in srgb, var(--pulse, #0066ff) 50%, #000));
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
}
.reviewer-package {
    display: inline-block;
    padding: 0.22rem 0.55rem;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.28);
    border-radius: 6px;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--pulse-bright, #4da3ff);
    text-transform: uppercase;
    margin-left: 44px;
}
.review-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    text-align: right;
}
.review-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    color: var(--paper-dim, #a0a0a5);
}
.review-rating .star,
.review-rating i,
.review-rating svg {
    filter: drop-shadow(0 0 4px rgba(77, 163, 255, 0.3));
    flex-shrink: 0;
}
.review-date {
    font-size: 0.72rem;
    color: var(--paper-dim, #a0a0a5);
    letter-spacing: 0.02em;
}

.review-content {
    font-size: 0.93rem;
    line-height: 1.65;
    color: rgba(250, 250, 247, 0.85);
    flex: 1;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--line, rgba(250, 250, 247, 0.08));
    gap: 0.75rem;
    flex-wrap: wrap;
}
.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.7rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #7aeba5;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.verified-badge i,
.verified-badge svg { flex-shrink: 0; }
.helpful-section .helpful-btn svg { flex-shrink: 0; }
.helpful-section .helpful-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.85rem;
    background: rgba(250, 250, 247, 0.03);
    border: 1px solid var(--line-strong, rgba(250, 250, 247, 0.14));
    border-radius: 999px;
    color: var(--paper-dim, #a0a0a5);
    font-size: 0.74rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}
.helpful-section .helpful-btn:hover {
    color: var(--pulse-bright, #4da3ff);
    border-color: var(--pulse-bright, #4da3ff);
    background: rgba(0, 102, 255, 0.05);
}

/* ============================================================ */
/* LOADING / EMPTY STATE                                        */
/* ============================================================ */
.loading-state {
    grid-column: 1 / -1;
    padding: 3rem 1.5rem;
    text-align: center;
    background: var(--ink-2, #111114);
    border: 1px dashed var(--line-strong, rgba(250, 250, 247, 0.14));
    border-radius: 16px;
    color: var(--paper-dim, #a0a0a5);
}
.loading-state h3 {
    color: var(--paper, #fafaf7);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.loading-state p {
    font-size: 0.88rem;
    line-height: 1.55;
    margin: 0;
}
.loading-state i {
    color: var(--pulse-bright, #4da3ff) !important;
    opacity: 0.7;
}
.spinner {
    width: 36px;
    height: 36px;
    margin: 0 auto 1rem;
    border: 2.5px solid rgba(250, 250, 247, 0.1);
    border-top-color: var(--pulse-cyan, #00d4ff);
    border-radius: 50%;
    animation: rv-spin 0.9s linear infinite;
}
@keyframes rv-spin { to { transform: rotate(360deg); } }

/* ============================================================ */
/* FINAL CTA                                                    */
/* ============================================================ */
.rv-final {
    position: relative;
    padding: 3rem 1.5rem;
    background: linear-gradient(160deg, rgba(0, 102, 255, 0.08), rgba(0, 212, 255, 0.02));
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
}
.rv-final-bg {
    position: absolute;
    inset: 0;
    pointer-events: auto;
}
.rv-final-bg::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.18), rgba(0, 212, 255, 0.05) 40%, transparent 70%);
    filter: blur(50px);
}
.rv-final-inner {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
}
.rv-final-inner h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.08;
    color: var(--paper, #fafaf7);
    margin: 1rem 0 0.75rem;
}
.rv-final-inner p {
    font-size: 0.92rem;
    color: rgba(250, 250, 247, 0.7);
    margin: 0 0 1.75rem;
    letter-spacing: 0.01em;
}
.rv-final-ctas {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}
.rv-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 1rem 1.5rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    font-family: inherit;
}
.rv-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
    transform: translateX(-120%);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto;
}
.rv-btn:hover::before { transform: translateX(120%); }
.rv-btn-primary {
    background: var(--paper, #fafaf7);
    color: var(--ink, #0a0a0a);
    box-shadow: 0 6px 20px rgba(250, 250, 247, 0.12);
}
.rv-btn-primary:hover {
    background: linear-gradient(135deg, var(--pulse, #0066ff), var(--pulse-cyan, #00d4ff));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 102, 255, 0.4);
}
.rv-btn-ghost {
    background: transparent;
    color: var(--paper, #fafaf7);
    border-color: var(--line-strong, rgba(250, 250, 247, 0.18));
}
.rv-btn-ghost:hover {
    border-color: var(--pulse-bright, #4da3ff);
    color: var(--pulse-bright, #4da3ff);
    background: rgba(0, 102, 255, 0.04);
    transform: translateY(-2px);
}

/* ============================================================ */
/* NOTIFICATION TOAST                                           */
/* ============================================================ */
.notification {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 2100;
    padding: 0.95rem 1.25rem;
    background: var(--ink-2, #111114);
    border: 1px solid var(--line-strong, rgba(250, 250, 247, 0.18));
    border-radius: 12px;
    color: var(--paper, #fafaf7);
    font-size: 0.88rem;
    font-weight: 500;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
    max-width: 340px;
    transform: translateY(16px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.notification::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pulse-cyan, #00d4ff), transparent);
}
.notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.notification.success {
    border-color: rgba(34, 197, 94, 0.4);
}
.notification.success::before {
    background: linear-gradient(90deg, transparent, #22c55e, transparent);
}
.notification.error {
    border-color: rgba(255, 93, 93, 0.5);
    color: #ffbaba;
}
.notification.error::before {
    background: linear-gradient(90deg, transparent, #ff5d5d, transparent);
}

/* ============================================================ */
/* RESPONSIVE                                                   */
/* ============================================================ */
@media (max-width: 1024px) {
    .review-stats { grid-template-columns: 1fr 1fr; }
    .rating-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .overall-rating {
        padding-right: 0;
        padding-bottom: 1.5rem;
        border-right: none;
        border-bottom: 1px solid var(--line, rgba(250, 250, 247, 0.08));
        justify-content: center;
    }
    .reviews-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .reviews-section { padding: 1.5rem 0 3rem; }
    .review-stats { gap: 0.6rem; }
    .stat-card { padding: 1.15rem 0.7rem; border-radius: 12px; }
    .rating-breakdown { padding: 1.5rem 1.25rem; border-radius: 14px; }
    .rating-header { gap: 1.5rem; }
    .overall-rating { gap: 1rem; padding-bottom: 1.25rem; }
    .rating-bar { grid-template-columns: 38px 1fr 40px; gap: 0.6rem; }
    .reviews-list-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .review-card { padding: 1.35rem 1.15rem; }
    .review-header {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    .review-meta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
    .rv-final { padding: 2.25rem 1.25rem; }
    .rv-final-ctas { flex-direction: column; width: 100%; }
    .rv-btn { justify-content: center; width: 100%; }
    .notification { left: 1rem; right: 1rem; max-width: none; }
}

@media (max-width: 480px) {
    .reviewer-package { margin-left: 0; margin-top: 0.35rem; }
    .reviewer-name { font-size: 0.92rem; }
    .reviewer-name::before { width: 30px; height: 30px; font-size: 0.82rem; }
    .review-content { font-size: 0.88rem; }
    .rating-number { font-size: 3rem; }
}

@media (prefers-reduced-motion: reduce) {
    .spinner, .bar-fill { animation: none !important; transition: none !important; }
}

.review-form-container {
    width: 100%;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: #111114;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    position: relative;
}

.review-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0,212,255,0.6),
        transparent
    );
}

.review-form-container {
    position: relative;
    z-index: 5;
}

/* GRID */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.form-group.full {
    grid-column: 1 / -1;
}

/* INPUTS */
.form-input {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    color: #fff;
    transition: 0.25s;
}

.form-input:focus {
    outline: none;
    border-color: #4da3ff;
    box-shadow: 0 0 0 1px rgba(77,163,255,0.3),
                0 0 12px rgba(0,102,255,0.2);
}

/* STARS */
.star-rating {
    display: flex;
    gap: 0.4rem;
    cursor: pointer;
}

.star-input {
    fill: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: 0.2s;
}


.star-input.active,
.star-input:hover {
    fill: #4da3ff;
    filter: drop-shadow(0 0 6px rgba(77,163,255,0.5));
}

/* PACKAGE */
.package-option {
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    cursor: pointer;
}

.package-option:hover {
    border-color: #0066ff;
    background: rgba(0,102,255,0.08);
}

.package-option.active {
    border-color: #4da3ff;
    background: rgba(0,102,255,0.15);
}

/* BUTTON */
.submit-btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1.1rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #0066ff, #00d4ff);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,102,255,0.35);
}

.submit-btn:disabled {
    background: linear-gradient(135deg, #3d5f9e, #5aa0c0); 
    color: #d0d0d0; 
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.9; 
}

/* GRID LAYOUT */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-col {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.full-width {
    grid-column: 1 / -1;
}

/* LABELS */
.form-label {
    font-size: 1rem;
    color: var(--paper-dim);
    margin-bottom: 0.4rem;
    display: block;
}

/* PACKAGE BUTTON ROW */
.package-selection {
    display: flex;
    gap: 0.75rem;
}

.package-option {
    flex: 1;
    padding: 0.9rem;
    border: 1px solid rgba(0,102,255,0.3);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: 0.25s;
}

.package-option:hover {
    transform: translateY(-2px);
    background: rgba(0, 102, 255, 0.08); /* subtle glow */
    border-color: #4da3ff; /* highlight border */
    transition: all 0.2s ease-in-out; /* smooth animation */
}

.package-option.active {
    transform: translateY(-2px);
    border-color: var(--pulse-bright);
    background: rgba(0,102,255,0.08);
}

/* STAR FIX (your "hearts issue") */
.star-rating {
    display: flex;
    gap: 6px;
    cursor: pointer;
}

.star-input {
    font-size: 20px;
    color: rgba(255,255,255,0.2);
    transition: 0.2s;
}

.star-input.active {
    color: var(--pulse-bright);
}

/* TEXTAREA */
.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* BUTTON */
.submit-btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #0066ff, #00d4ff);
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.review-form-container {
    position: relative;
    z-index: 5;
}

.review-form-container * {
    pointer-events: auto;
}
