/* ========== BASE STYLES ========== */
:root {
    --primary: #00DC5A;
    --primary-soft: rgba(0, 220, 90, 0.15);
    --bg: #020617;
    --bg-alt: #020b1a;
    --card: rgba(15, 23, 42, 0.9);
    --text: #e5e7eb;
    --muted: #9ca3af;
    --border-soft: rgba(148, 163, 184, 0.25);
    --radius-lg: 24px;
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.55);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: "Kanit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at top left, #0f172a 0%, transparent 55%),
        radial-gradient(circle at bottom right, #020b1a 0%, transparent 60%),
        linear-gradient(135deg, #020617 0%, #020b1a 50%, #020617 100%);
    color: var(--text);
    min-height: 100vh;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(0, 220, 90, 0.18) 0, transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(56, 189, 248, 0.08) 0, transparent 60%);
    opacity: 0.9;
    pointer-events: none;
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 840px) {
    .container {
        max-width: 80%;
        margin: 0 auto;
        padding-inline: 1rem;
    }
}

/* ========== BUTTONS ========== */
.btn {
    border-radius: 999px;
    padding: 0.55rem 1.2rem;
    border: none;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, opacity 0.15s ease;
    white-space: nowrap;
}

.btn-primary {
    background: radial-gradient(circle at 0 0, #bbf7d0 0, #00dc5a 38%, #16a34a 100%);
    color: #022c22;
    box-shadow: 0 0 25px rgba(0, 220, 90, 0.45);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
    opacity: 0.95;
}

.btn-ghost {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.6);
    color: var(--text);
}

.btn-ghost:hover {
    background: rgba(15, 23, 42, 0.9);
    transform: translateY(-1px);
}

.btn-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(6, 95, 70, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #bbf7d0;
}

/* ========== MAIN CONTENT ========== */
main {
    flex: 1;
    padding-bottom: 4rem;
}

section {
    padding: 3.5rem 0;
}

/* ========== SECTIONS GENERAL ========== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.section-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.section-kicker {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--primary);
}

.section-title {
    font-size: 1.4rem;
    font-weight: 500;
}

.section-subtitle {
    font-size: 0.88rem;
    color: var(--muted);
}

.section-link {
    font-size: 0.8rem;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}

.section-link span {
    font-size: 1rem;
}

@media (max-width: 720px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========== HERO SECTION ========== */
#hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: center;
}

.hero-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    font-size: 0.8rem;
}

.meta-chip {
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(15, 23, 42, 0.9);
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.meta-chip.primary {
    border-color: rgba(34, 197, 94, 0.8);
    background: rgba(22, 163, 74, 0.16);
    color: #bbf7d0;
}

.hero-title {
    font-size: 2.6rem;
    line-height: 1.1;
    margin-bottom: 0.6rem;
    letter-spacing: 0.02em;
}

.hero-title span {
    color: var(--primary);
    text-shadow: 0 0 18px rgba(16, 185, 129, 0.7);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--muted);
    max-width: 460px;
    margin-bottom: 1.6rem;
}

/* Hero Stats with Frames */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.8rem;
    font-size: 0.85rem;
}

.hero-stat-block {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
}

.hero-stat-label {
    color: var(--muted);
    font-size: 0.78rem;
}

.hero-stat-value {
    font-weight: 500;
    color: #bbf7d0;
}

/* Mobile: 3 columns in one row */
@media (max-width: 720px) {
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .hero-stat-block {
        padding: 0.5rem 0.4rem;
        border-radius: 8px;
        text-align: center;
    }

    .hero-stat-label {
        font-size: 0.6rem;
    }

    .hero-stat-value {
        font-size: 0.7rem;
    }
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--muted);
}

.hero-note-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 2px solid rgba(52, 211, 153, 0.8);
    box-shadow: 0 0 15px rgba(45, 212, 191, 0.9);
}

/* Hero Poster */
.hero-poster-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-poster-glow {
    position: absolute;
    inset: 8% 10%;
    background:
        radial-gradient(circle at 30% 0%, rgba(59, 130, 246, 0.38) 0, transparent 55%),
        radial-gradient(circle at 80% 100%, rgba(34, 197, 94, 0.35) 0, transparent 60%);
    filter: blur(18px);
    opacity: 0.8;
    z-index: -1;
}

.hero-poster {
    position: relative;
    width: 100%;
    max-width: 470px;
    border-radius: 32px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 0%, rgba(248, 250, 252, 0.15) 0, transparent 60%),
        linear-gradient(145deg, #020617 0%, #111827 35%, #0f172a 70%, #020617 100%);
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.hero-poster-top {
    position: relative;
    flex: 1;
    background-image: url("image/Iqiyi.png");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-poster-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 0, rgba(148, 163, 184, 0.2) 0, transparent 55%),
        linear-gradient(to top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.0));
    mix-blend-mode: soft-light;
}

.poster-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.7rem;
    background: rgba(15, 23, 42, 0.86);
    border: 1px solid rgba(148, 163, 184, 0.6);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.poster-tag span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.poster-rating {
    position: absolute;
    bottom: 14px;
    left: 14px;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.92);
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.poster-rating-star {
    color: #fbbf24;
    font-size: 0.85rem;
}

.poster-corner {
    position: absolute;
    bottom: 12px;
    right: 12px;
    padding: 0.23rem 0.9rem;
    border-radius: 999px;
    font-size: 0.7rem;
    background: rgba(0, 220, 90, 0.17);
    border: 1px solid rgba(45, 212, 191, 0.55);
    color: #a7f3d0;
}

.hero-poster-bottom {
    padding: 0.85rem 1rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9));
    border-top: 1px solid rgba(15, 23, 42, 0.9);
}

.poster-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.poster-info-title {
    font-size: 0.9rem;
    font-weight: 500;
}

.poster-info-meta {
    font-size: 0.75rem;
    color: var(--muted);
}

.poster-mini-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.25rem;
}

.poster-mini-pill {
    font-size: 0.7rem;
    padding: 0.16rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(55, 65, 81, 0.8);
    color: #9ca3af;
}

.poster-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.poster-play {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: radial-gradient(circle at 0 0, #bbf7d0 0, #00dc5a 38%, #22c55e 100%);
    box-shadow: 0 0 20px rgba(0, 220, 90, 0.6);
}

.poster-play span {
    margin-left: 2px;
    border-style: solid;
    border-width: 7px 0 7px 11px;
    border-color: transparent transparent transparent #022c22;
}

.poster-link-cta {
    font-size: 0.75rem;
    color: #a7f3d0;
    opacity: 0.75;
}

.poster-link-cta strong {
    color: #bbf7d0;
}

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    #hero {
        padding-top: 2.2rem;
    }

    .hero-inner {
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-subtitle {
        max-width: 100%;
    }
}

@media (max-width: 520px) {
    .hero-cta-row {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ========== PACKAGES SECTION (??????) ========== */
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

@media (max-width: 960px) {
    .package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .package-grid {
        max-width: 80%;
        margin: 0 auto;
        grid-template-columns: minmax(0, 1fr);
    }
}

.package-card {
    position: relative;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.12) 0, transparent 55%),
        radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.08) 0, transparent 60%),
        var(--card);
    border: 1px solid var(--border-soft);
    padding: 1.2rem 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.88);
    overflow: hidden;
}

.package-badge {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    font-size: 0.65rem;
    padding: 0.23rem 0.6rem;
    border-radius: 999px;
    background: rgba(22, 163, 74, 0.25);
    border: 1px solid rgba(74, 222, 128, 0.7);
    color: #bbf7d0;
}

.package-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.package-icon {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    object-fit: contain;
}

.package-header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.package-name {
    font-size: 1.05rem;
    font-weight: 500;
}

.package-tagline {
    font-size: 0.8rem;
    color: var(--muted);
}

.package-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.3rem;
}

.package-chip {
    font-size: 0.7rem;
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(55, 65, 81, 0.9);
    color: #9ca3af;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.5rem;
    padding: 0.4rem 0.75rem;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.6);
}

.price-main {
    font-size: 1.8rem;
    font-weight: 600;
    color: #bbf7d0;
}

.price-main span {
    font-size: 0.9rem;
    font-weight: 400;
    color: #a5b4fc;
}

.price-old {
    font-size: 0.8rem;
    color: #6b7280;
    text-decoration: line-through;
}

.price-tag {
    margin-left: auto;
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px dashed rgba(148, 163, 184, 0.6);
    color: #a5b4fc;
}

.package-features {
    list-style: none;
    margin-top: 0.4rem;
    display: grid;
    gap: 0.35rem;
    font-size: 0.78rem;
    color: var(--muted);
}

.package-features li {
    display: flex;
    gap: 0.4rem;
    align-items: flex-start;
}

.package-features li::before {
    content: "•";
    color: var(--primary);
    margin-top: 0.06rem;
}

.package-footer {
    margin-top: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: var(--muted);
}

.package-footer-note span {
    color: #bbf7d0;
}

.package-footer .btn {
    font-size: 0.8rem;
    padding-inline: 1rem;
}

/* ========== PROMO SECTION (?????????) ========== */
.promo-wrap {
    border-radius: 30px;
    border: 1px solid rgba(52, 211, 153, 0.4);
    background:
        radial-gradient(circle at 10% 0, rgba(34, 197, 94, 0.16) 0, transparent 55%),
        radial-gradient(circle at 80% 100%, rgba(59, 130, 246, 0.18) 0, transparent 60%),
        rgba(15, 23, 42, 0.98);
    padding: 1.6rem 1.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 1.8rem;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.promo-ribbon {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.1) 0, transparent 40%);
    opacity: 0.8;
    pointer-events: none;
}

.promo-main {
    position: relative;
    z-index: 1;
}

.promo-heading {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.promo-highlight {
    color: #bbf7d0;
}

.promo-desc {
    font-size: 0.85rem;
    color: var(--muted);
    max-width: 460px;
    margin-bottom: 0.9rem;
}

.promo-bullets {
    list-style: none;
    display: grid;
    gap: 0.3rem;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.promo-bullets li {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}

.promo-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--primary);
}

.promo-timer {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(248, 250, 252, 0.3);
    font-size: 0.75rem;
    color: #e5e7eb;
    background: rgba(15, 23, 42, 0.9);
    margin-bottom: 0.75rem;
}

.promo-timer span {
    color: #fbbf24;
}

.promo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.promo-side {
    position: relative;
    z-index: 1;
    border-radius: 24px;
    border: 1px dashed rgba(148, 163, 184, 0.6);
    background: radial-gradient(circle at 20% 0, rgba(148, 163, 184, 0.2) 0, transparent 55%),
        rgba(15, 23, 42, 0.95);
    padding: 1.1rem 1rem;
    font-size: 0.8rem;
    display: grid;
    gap: 0.6rem;
}

.promo-list {
    list-style: none;
    display: grid;
    gap: 0.3rem;
}

.promo-list li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
}

.promo-list-label {
    color: var(--muted);
}

.promo-list-value {
    color: #bbf7d0;
    font-weight: 500;
}

.promo-tag {
    font-size: 0.7rem;
    color: var(--muted);
}

@media (max-width: 900px) {
    .promo-wrap {
        grid-template-columns: minmax(0, 1fr);
    }
}

#reviews .container {
    max-width: 1000px;
}

/* ========== REVIEWS SECTION (?????) ========== */
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

@media (max-width: 1024px) {
    .review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .review-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.review-card {
    border-radius: 22px;
    background: radial-gradient(circle at top left, rgba(34, 197, 94, 0.08) 0, transparent 55%),
        rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(55, 65, 81, 0.85);
    padding: 1rem 0.95rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.92);
    font-size: 0.8rem;
}

.review-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.avatar {
    width: 44px;
    height: 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #4ade80);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #022c22;
    font-weight: 600;
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 999px;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.review-name {
    font-size: 0.85rem;
}

.review-tag {
    font-size: 0.7rem;
    color: var(--muted);
}

.review-stars {
    margin-left: auto;
    font-size: 0.75rem;
    color: #fbbf24;
}

.review-text {
    color: #d1d5db;
    line-height: 1.4;
}

.review-date {
    font-size: 0.7rem;
    color: var(--muted);
}

/* ========== CONTACT SECTION (?????????) ========== */
.contact-wrap {
    border-radius: 32px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background:
        radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.18) 0, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(59, 130, 246, 0.16) 0, transparent 60%),
        rgba(15, 23, 42, 0.98);
    padding: 1.6rem 1.5rem;
    
    box-shadow: var(--shadow-soft);
}

.contact-main {
    display: grid;
    gap: 0.6rem;
    font-size: 0.85rem;
}

.contact-main h3 {
    font-size: 1.2rem;
    font-weight: 500;
}

.contact-main p {
    color: var(--muted);
}

.contact-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.4rem;
}

.contact-chip {
    font-size: 0.75rem;
    padding: 0.23rem 0.6rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(55, 65, 81, 0.9);
    color: #9ca3af;
}

.contact-actions {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.contact-actions .btn {
    font-size: 0.85rem;
    padding-inline: 1.1rem;
}

.contact-meta {
    font-size: 0.75rem;
    color: var(--muted);
}

.contact-side {
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.98);
    padding: 1rem 0.95rem;
    display: grid;
    gap: 0.75rem;
    font-size: 0.8rem;
    border: 1px dashed rgba(148, 163, 184, 0.7);
}

.qr-box {
    height: 150px;
    border-radius: 18px;
    border: 1px dashed rgba(148, 163, 184, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--muted);
    background: radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.15) 0, transparent 55%),
        rgba(15, 23, 42, 0.95);
}

.contact-side-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.7rem;
}

.contact-side-label {
    color: var(--muted);
}

.contact-side-value {
    color: #bbf7d0;
    font-weight: 500;
}

.contact-side small {
    color: var(--muted);
    font-size: 0.72rem;
}

@media (max-width: 900px) {
    .contact-wrap {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Override QR Box style */
.qr-box {
    height: auto !important;
    width: fit-content;
    margin-inline: auto;
    padding: 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.15);
    background: rgba(15, 23, 42, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.qr-box img {
    width: 140px;
    height: auto;
    border-radius: 12px;
    display: block;
}

