/* reviews.html — page-specific styles (base design system lives in assets/css/main.css) */

* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

h1,
      h2,
      h3,
      h4 {
        font-family: "Syne", sans-serif;
        line-height: 1.2;
      }

.cl-logo {
        font-family: "Syne", sans-serif;
        font-size: 2.2rem;
        font-weight: 800;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 12px;
        animation: clFade 0.5s ease both;
      }

.cl-logo span {
        color: var(--green);
      }

.cl-bar {
        width: 200px;
        height: 3px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
        overflow: hidden;
        animation: clFade 0.4s ease 0.2s both;
      }

.cl-fill {
        height: 100%;
        width: 0;
        background: linear-gradient(90deg, var(--green), var(--blue));
        animation: barFill 0.45s ease 0.3s both;
      }

.logo em {
        font-style: normal;
        color: var(--green);
      }

.nav-links a:hover::after {
        left: 14px;
        right: 14px;
      }

.nav-links a:hover {
        color: var(--green);
      }

.ph-mesh {
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse at 15% 60%,
            rgba(0, 212, 140, 0.13) 0%,
            transparent 50%
          ),
          radial-gradient(
            ellipse at 85% 25%,
            rgba(167, 139, 250, 0.13) 0%,
            transparent 50%
          ),
          radial-gradient(
            ellipse at 50% 100%,
            rgba(56, 189, 248, 0.08) 0%,
            transparent 50%
          );
      }

.orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(40px);
        opacity: 0.16;
        animation: orbFloat ease-in-out infinite;
      }

.orb1 {
        width: 500px;
        height: 500px;
        background: var(--green);
        top: -200px;
        left: -150px;
        animation-duration: 12s;
      }

.orb2 {
        width: 320px;
        height: 320px;
        background: var(--purple);
        bottom: -100px;
        right: -80px;
        animation-duration: 9s;
        animation-delay: -4s;
      }

.orb3 {
        width: 180px;
        height: 180px;
        background: var(--yellow);
        top: 25%;
        right: 12%;
        animation-duration: 7s;
        animation-delay: -2s;
      }

.star-chip {
        position: absolute;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 12px;
        padding: 9px 15px;
        font-family: "Syne", sans-serif;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.78rem;
        backdrop-filter: blur(8px);
        animation: chipFloat ease-in-out infinite;
        pointer-events: none;
        user-select: none;
      }

.sc1 {
        top: 18%;
        left: 4%;
        animation-duration: 5.5s;
      }

.sc2 {
        top: 55%;
        left: 6%;
        animation-duration: 7s;
        animation-delay: -2s;
      }

.sc3 {
        top: 20%;
        right: 5%;
        animation-duration: 6s;
        animation-delay: -1s;
      }

.sc4 {
        top: 62%;
        right: 4%;
        animation-duration: 5s;
        animation-delay: -3s;
      }

.page-hero > div > p {
        color: rgba(255, 255, 255, 0.65);
        font-size: 1.05rem;
        line-height: 1.75;
        max-width: 640px;
        margin: 0 auto 32px;
        animation: hFade 0.7s ease 0.35s both;
      }

.hero-pills {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        animation: hFade 0.7s ease 0.5s both;
      }

.hero-pill {
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.12);
        color: rgba(255, 255, 255, 0.85);
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 0.82rem;
        display: flex;
        align-items: center;
        gap: 7px;
        transition: all 0.3s;
        cursor: default;
      }

.hero-pill:hover {
        background: rgba(0, 212, 140, 0.15);
        border-color: rgba(0, 212, 140, 0.4);
        transform: translateY(-3px);
      }

.hero-pill i {
        color: var(--green);
      }

.rating-summary {
        background: var(--navy);
        padding: 60px 24px;
        position: relative;
        overflow: hidden;
      }

.rating-summary::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse at 50% 50%,
          rgba(0, 212, 140, 0.07) 0%,
          transparent 65%
        );
      }

.rating-grid {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 48px;
        align-items: center;
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
      }

.big-score {
        text-align: center;
      }

.score-num {
        font-family: "Syne", sans-serif;
        font-size: 5rem;
        font-weight: 800;
        color: var(--green);
        line-height: 1;
        display: block;
        animation: scoreCount 2s cubic-bezier(0.22, 1, 0.36, 1) both;
      }

@keyframes scoreCount {
        from {
          opacity: 0;
          transform: scale(0.5);
        }
        to {
          opacity: 1;
          transform: scale(1);
        }
      }

.score-sub {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.85rem;
        margin-top: 6px;
      }

.score-stars {
        color: var(--yellow);
        font-size: 1.3rem;
        letter-spacing: 3px;
        margin-top: 4px;
        animation: starsPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
      }

@keyframes starsPop {
        from {
          opacity: 0;
          transform: scale(0.7);
        }
        to {
          opacity: 1;
          transform: scale(1);
        }
      }

.bars {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

.bar-row {
        display: flex;
        align-items: center;
        gap: 12px;
      }

.bar-label {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.8rem;
        width: 16px;
        text-align: right;
        flex-shrink: 0;
      }

.bar-track {
        flex: 1;
        height: 10px;
        background: rgba(255, 255, 255, 0.07);
        border-radius: 6px;
        overflow: hidden;
      }

.bar-fill {
        height: 100%;
        border-radius: 6px;
        background: linear-gradient(90deg, var(--green), var(--blue));
        transform-origin: left;
        animation: barGrow 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
      }

@keyframes barGrow {
        from {
          transform: scaleX(0);
        }
        to {
          transform: scaleX(1);
        }
      }

.bar-count {
        color: rgba(255, 255, 255, 0.4);
        font-size: 0.78rem;
        width: 40px;
        flex-shrink: 0;
      }

.platforms {
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

.platform-badge {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 12px 18px;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s;
        cursor: default;
      }

.platform-badge:hover {
        background: rgba(0, 212, 140, 0.12);
        border-color: rgba(0, 212, 140, 0.3);
        transform: translateX(4px);
      }

.platform-badge i {
        color: var(--green);
        font-size: 1rem;
        width: 18px;
        text-align: center;
      }

.pb-name {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.82rem;
        font-weight: 600;
      }

.pb-score {
        color: var(--green);
        font-family: "Syne", sans-serif;
        font-weight: 800;
        font-size: 0.9rem;
      }

.pb-stars {
        color: var(--yellow);
        font-size: 0.7rem;
        letter-spacing: 2px;
      }

.filter-section {
        background: var(--off);
        padding: 40px 24px 0;
      }

.filter-tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        margin-bottom: 0;
      }

.filter-tab {
        padding: 9px 22px;
        border-radius: 30px;
        font-size: 0.85rem;
        font-weight: 600;
        border: 1.5px solid var(--border);
        background: var(--white);
        color: var(--muted);
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        font-family: "DM Sans", sans-serif;
      }

.filter-tab:hover {
        border-color: var(--green);
        color: var(--green);
        transform: translateY(-2px);
      }

.filter-tab.active {
        background: var(--green);
        border-color: var(--green);
        color: var(--navy);
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(0, 212, 140, 0.3);
      }

.reviews-section {
        background: var(--off);
        padding: 40px 24px 90px;
      }

.reviews-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 22px;
      }

.testi-card {
        background: var(--white);
        border: 1.5px solid var(--border);
        border-radius: 18px;
        padding: 28px;
        transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        position: relative;
        overflow: hidden;
        opacity: 0;
        transform: translateY(24px);
      }
.testi-card.card-in {
        opacity: 1;
        transform: none;
        transition:
          opacity 0.55s ease,
          transform 0.55s ease;
      }

.testi-card::after {
        content: "";
        position: absolute;
        top: 0;
        left: -70%;
        width: 50%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.5),
          transparent
        );
        transform: skewX(-20deg);
        transition: left 0.7s ease;
      }

.testi-card:hover::after {
        left: 140%;
      }

.testi-card.hidden {
        display: none;
      }

.testi-stars {
        color: var(--yellow);
        font-size: 0.95rem;
        letter-spacing: 3px;
        margin-bottom: 10px;
        animation: starsWiggle 3s ease-in-out infinite;
      }
      @keyframes starsWiggle {
        0%,
        90%,
        100% {
          transform: none;
        }
        95% {
          transform: rotate(3deg) scale(1.05);
        }
      }
      .testi-q {
        font-size: 2.8rem;
        font-family: "Syne", sans-serif;
        color: var(--green);
        line-height: 0.5;
        opacity: 0.3;
        margin-bottom: 10px;
        transition: opacity 0.3s;
      }
      .testi-card:hover .testi-q {
        opacity: 0.6;
      }
      .testi-text {
        color: var(--muted);
        font-size: 0.92rem;
        line-height: 1.78;
        margin-bottom: 20px;
        font-style: italic;
      }
      .testi-author {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .testi-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Syne", sans-serif;
        font-weight: 800;
        font-size: 0.9rem;
        color: var(--navy);
        flex-shrink: 0;
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      }
      .testi-card:hover .testi-avatar {
        transform: scale(1.12);
      }
      .testi-name {
        font-weight: 700;
        color: var(--navy);
        font-size: 0.9rem;
        margin-bottom: 2px;
        font-family: "Syne", sans-serif;
      }
      .testi-city {
        color: var(--muted);
        font-size: 0.78rem;
      }
.testi-tag {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: rgba(0, 212, 140, 0.08);
        border: 1px solid rgba(0, 212, 140, 0.2);
        color: var(--green);
        padding: 3px 10px;
        border-radius: 12px;
        font-size: 0.72rem;
        font-weight: 700;
        margin-bottom: 14px;
      }

.review-form-section {
        background: var(--navy);
        padding: 80px 24px;
        position: relative;
        overflow: hidden;
      }

.review-form-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse at 30% 50%,
            rgba(0, 212, 140, 0.08) 0%,
            transparent 60%
          ),
          radial-gradient(
            ellipse at 70% 30%,
            rgba(167, 139, 250, 0.07) 0%,
            transparent 60%
          );
      }

.review-form-box {
        max-width: 660px;
        margin: 0 auto;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.09);
        border-radius: 24px;
        padding: 44px;
        position: relative;
        z-index: 1;
        transition: box-shadow 0.3s;
      }

.review-form-box:hover {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
      }

.review-form-box h3 {
        color: var(--white);
        font-size: 1.5rem;
        margin-bottom: 8px;
      }

.review-form-box > p {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.9rem;
        margin-bottom: 28px;
      }

.rfg {
        margin-bottom: 16px;
      }

.rfg label {
        display: block;
        font-size: 0.74rem;
        color: rgba(255, 255, 255, 0.45);
        margin-bottom: 7px;
        text-transform: uppercase;
        letter-spacing: 0.6px;
        font-weight: 700;
      }

.rfg input,
      .rfg select,
      .rfg textarea {
        width: 100%;
        background: rgba(255, 255, 255, 0.07);
        border: 1.5px solid rgba(255, 255, 255, 0.1);
        color: var(--white);
        border-radius: 10px;
        padding: 11px 14px;
        font-size: 0.92rem;
        font-family: "DM Sans", sans-serif;
        transition: all 0.25s;
        outline: none;
      }

.rfg select {
        appearance: none;
        -webkit-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='rgba(255,255,255,.35)' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-color: rgba(255, 255, 255, 0.07);
        padding-right: 32px;
        cursor: pointer;
      }

.rfg select option {
        background: #0b1f3a;
      }

.rfg input:focus,
      .rfg select:focus,
      .rfg textarea:focus {
        border-color: rgba(0, 212, 140, 0.5);
        background: rgba(0, 212, 140, 0.09);
        box-shadow: 0 0 0 4px rgba(0, 212, 140, 0.12);
      }

.rfg textarea {
        resize: vertical;
        min-height: 110px;
      }

.star-picker {
        display: flex;
        gap: 6px;
        margin-bottom: 20px;
      }

.star-pick {
        font-size: 1.6rem;
        cursor: pointer;
        color: var(--border);
        transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
        line-height: 1;
      }

.star-pick.lit {
        color: var(--yellow);
      }

.star-pick:hover {
        transform: scale(1.3) rotate(-5deg);
      }

.rfg-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
      }

.btn-submit-review {
        width: 100%;
        background: var(--green);
        color: var(--navy);
        font-family: "Syne", sans-serif;
        font-weight: 800;
        padding: 15px 28px;
        border-radius: 12px;
        font-size: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        border: none;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        box-shadow: 0 6px 22px rgba(0, 212, 140, 0.38);
        animation: idleBounce 3s ease-in-out infinite 3s;
      }

.btn-submit-review::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.3),
          transparent
        );
        transform: translateX(-100%);
      }

.btn-submit-review:hover::before {
        transform: translateX(100%);
        transition: transform 0.5s;
      }

.btn-submit-review:hover {
        background: var(--green2);
        transform: translateY(-4px) scale(1.03);
        box-shadow: 0 16px 36px rgba(0, 212, 140, 0.55);
        animation: none;
      }

.btn-submit-review i {
        transition: transform 0.3s;
      }

.btn-submit-review:hover i {
        transform: translateX(5px) rotate(-10deg);
      }

.btn-dark::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.07),
          transparent
        );
        transform: translateX(-100%);
      }

.btn-dark:hover::before {
        transform: translateX(100%);
        transition: transform 0.5s;
      }

.btn-dark i {
        transition: transform 0.3s;
      }

.btn-dark:hover i {
        transform: translateX(5px);
      }

.btn-wa::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.15),
          transparent
        );
        transform: translateX(-100%);
      }

.btn-wa:hover::before {
        transform: translateX(100%);
        transition: transform 0.5s;
      }

.btn-wa i {
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      }

.btn-wa:hover i {
        transform: rotate(20deg) scale(1.25);
      }

.footer-grid {
        max-width: 1240px;
        margin: auto;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
        padding-bottom: 56px;
      }

.footer-logo em {
        font-style: normal;
        color: var(--green);
      }

.footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        padding: 22px 0;
        max-width: 1240px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.35);
      }

.footer-bottom a {
        color: rgba(255, 255, 255, 0.35);
        transition: color 0.2s;
      }

.footer-bottom a:hover {
        color: var(--green);
      }

#reviewToast {
        position: fixed;
        bottom: 100px;
        right: 28px;
        background: var(--navy);
        border: 1px solid rgba(0, 212, 140, 0.3);
        border-radius: 14px;
        padding: 14px 20px;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.88rem;
        color: var(--white);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        z-index: 9999;
        transform: translateX(120%);
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      }

#reviewToast.show {
        transform: translateX(0);
      }

#reviewToast i {
        color: var(--green);
        font-size: 1.1rem;
      }

@media (max-width: 860px) {
        .rating-grid {
          grid-template-columns: 1fr;
        }
        .nav-links {
          display: none;
        }
        .hamburger {
          display: block;
        }
        .footer-grid {
          grid-template-columns: 1fr 1fr;
          gap: 32px;
        }
        .rfg-grid {
          grid-template-columns: 1fr;
        }
      }

@media (max-width: 500px) {
        .fg {
          grid-template-columns: 1fr;
        }
        .sc1,
        .sc2,
        .sc3,
        .sc4 {
          display: none;
        }
      }