/* ══════════════════════════════════════════════════════════════
   IVAR PA Tual Landing Page — landing.css (Fresh Light Theme)
   ══════════════════════════════════════════════════════════════ */

:root {
    --primary: #0a8f7c;         /* Fresh Teal/Green */
    --primary-dark: #076d5e;
    --primary-deep: #054a40;
    --primary-light: #e0f2f1;
    --accent: #0f766e;          /* Teal button hover */
    --accent-gold: #f59e0b;     /* Gold Accent */
    --bg-light: #ffffff;
    --bg-alt: #f4fbf9;          /* Subtle light green background */
    --card-bg: #ffffff;
    --text-dark: #0f2d29;       /* Dark slate green */
    --text-muted: #526e6a;      /* Muted text with green tint */
    --border: #e0ecea;
    --shadow-sm: 0 4px 10px rgba(10, 143, 124, 0.03);
    --shadow-md: 0 10px 25px rgba(10, 143, 124, 0.06);
    --shadow-lg: 0 20px 40px rgba(10, 143, 124, 0.1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--primary-deep);
}

/* ── Navigation ── */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 8%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(10, 143, 124, 0.02);
    transition: all 0.3s ease;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 46px;
    filter: drop-shadow(0 4px 6px rgba(10, 143, 124, 0.15));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary-deep);
    line-height: 1.2;
    letter-spacing: -0.2px;
}

.logo-subtitle {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.2;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    list-style: none;
    margin-left: auto;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 14.5px;
    position: relative;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2.5px;
    background: var(--primary);
    border-radius: 99px;
    transition: width 0.2s ease;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 20px;
}

.nav-download-btn {
    background: var(--primary);
    color: white !important;
    padding: 10px 22px;
    border-radius: 99px;
    font-size: 13.5px !important;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(10, 143, 124, 0.2);
    transition: all 0.2s ease;
}

.nav-download-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(10, 143, 124, 0.3);
}

/* ── Hero Section ── */
.hero {
    padding: 170px 8% 100px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(224, 242, 241, 0.7) 0%, rgba(244, 251, 249, 0.4) 40%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Faint courthouse background motif */
.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 0;
    width: 45%;
    height: 80%;
    opacity: 0.04;
    background-image: url('https://www.pa-tual.go.id/images/sejarah-pa-tual.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    mask-image: radial-gradient(circle, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle, black 40%, transparent 80%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: 46px;
    line-height: 1.2;
    color: var(--primary-deep);
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 15.5px;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 580px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-dark);
    color: white;
    padding: 13px 26px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(10, 143, 124, 0.2);
    transition: all 0.3s ease;
}

.hero-btn-primary:hover {
    background: var(--primary-deep);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(10, 143, 124, 0.3);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--primary-deep);
    padding: 13px 26px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: var(--bg-alt);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

/* 3 checkmarks below hero buttons */
.hero-checkmarks {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.checkmark-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 170px;
    flex: 1;
}

.checkmark-icon {
    width: 28px;
    height: 28px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.checkmark-text h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-deep);
    margin-bottom: 2px;
}

.checkmark-text p {
    font-size: 11.5px;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 0;
}

.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

/* Smooth transitions for tracking JS mouse parallax */
.hero-mockup-img {
    max-width: 285px;
    width: 100%;
    height: auto;
    z-index: 10;
    position: relative;
    border: none;
    filter: drop-shadow(0 25px 50px rgba(5, 74, 64, 0.15));
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease, opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-mockup-img:hover {
    transform: translateY(-5px);
}

.floating-lock-badge {
    position: absolute;
    right: -25px;
    top: 55%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 12;
    max-width: 150px;
    animation: floatBadge 4s ease-in-out infinite;
}

.lock-badge-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.lock-badge-text {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-deep);
    line-height: 1.3;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(-50%) translateY(0); }
    50% { transform: translateY(-50%) translateY(-6px); }
}

.visual-bg-circle {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(167, 243, 208, 0.4) 0%, rgba(204, 251, 241, 0) 70%);
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ── Section General ── */
section.content-section {
    padding: 90px 8%;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px;
}

.section-header span {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 32px;
    color: var(--primary-deep);
    margin-bottom: 16px;
    line-height: 1.25;
}

.section-header p {
    color: var(--text-muted);
    font-size: 15px;
}

/* ── Features Grid (5 columns) ── */
.features-section {
    background: var(--bg-light);
    border-top: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-card {
    background: var(--card-bg);
    padding: 30px 18px;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* Custom coloring matching the reference layout */
.feature-icon.green  { background: #e8f5e9; color: #2e7d32; }
.feature-icon.cyan   { background: #e0f7fa; color: #00838f; }
.feature-icon.orange { background: #fff3e0; color: #e65100; }
.feature-icon.purple { background: #f3e5f5; color: #4a148c; }
.feature-icon.gold   { background: #fffde7; color: #f57f17; }
.feature-icon.red    { background: #ffebee; color: #c62828; }

.feature-card h3 {
    font-size: 14.5px;
    font-weight: 800;
    color: var(--primary-deep);
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.6;
}

/* ── Tentang Kami Section (Hand Phone Mockup & Floating tags) ── */
.tentang-section {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.tentang-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.tentang-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.floating-mockup-wrapper {
    position: relative;
    max-width: 270px;
    width: 100%;
}

.phone-mockup-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(5, 74, 64, 0.12));
    position: relative;
    z-index: 10;
}

.floating-tag {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--primary-deep);
    z-index: 12;
    transition: all 0.3s ease;
}

.floating-tag i {
    color: var(--primary);
    flex-shrink: 0;
}

.floating-tag:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.tag-1 { top: 10%; left: -25%; }
.tag-2 { top: 35%; right: -25%; }
.tag-3 { bottom: 25%; left: -25%; }
.tag-4 { bottom: 8%; right: -20%; }

.tentang-content span {
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 10px;
}

.tentang-content h2 {
    font-size: 32px;
    color: var(--primary-deep);
    margin-bottom: 20px;
    line-height: 1.25;
}

.tentang-content p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.tentang-cta-banner {
    margin-top: 35px;
    background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    box-shadow: 0 10px 25px rgba(5, 74, 64, 0.15);
}

.banner-text h4 {
    font-size: 16px;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
}

.banner-text p {
    font-size: 12px;
    opacity: 0.85;
    color: var(--primary-light);
}

.banner-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.banner-apk-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: var(--primary-deep);
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
    font-size: 14px;
}

.banner-apk-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.coming-soon-badge-banner {
    position: absolute;
    top: -12px;
    right: 0;
    background: var(--accent-gold);
    color: white;
    font-size: 8px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(245,158,11,0.2);
}

.playstore-badge-img {
    height: 44px;
    border-radius: 6px;
    transition: transform 0.2s ease;
}

.playstore-badge-img:hover {
    transform: scale(1.03);
}

/* ── FAQ Section ── */
.faq-section {
    background: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--primary-deep);
    font-size: 15px;
    user-select: none;
    transition: background 0.2s;
}

.faq-header:hover {
    background: var(--bg-alt);
}

.faq-icon {
    font-size: 18px;
    color: var(--primary);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.faq-content {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.6;
    border-top: 0 solid var(--border);
}

.faq-item.open {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-item.open .faq-content {
    padding: 16px 24px 20px;
    max-height: 1000px;
    border-top: 1.5px solid var(--border);
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
}

/* ── Screenshot Carousel ── */
.screenshot-section {
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
    flex: 0 0 calc(25% - 15px);
    min-width: 200px;
    aspect-ratio: 9/19;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border);
    position: relative;
    background: #ffffff;
    transition: all 0.3s ease;
}

.carousel-slide:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1.5px solid var(--border);
    color: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.carousel-btn.prev { left: -10px; }
.carousel-btn.next { right: -10px; }

/* ── Playstore Style Reviews ── */
.reviews-section {
    background-color: var(--bg-light);
}

.reviews-container {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 50px;
}

.rating-summary-card {
    background: var(--bg-alt);
    border-radius: 24px;
    padding: 35px 30px;
    text-align: center;
    border: 1.5px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: fit-content;
    box-shadow: var(--shadow-sm);
}

.rating-big-num {
    font-size: 64px;
    font-weight: 850;
    color: var(--primary-deep);
    line-height: 1;
    margin-bottom: 8px;
}

.stars-row {
    color: #e0ecea;
    font-size: 20px;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.stars-row .filled {
    color: var(--accent-gold);
}

.total-reviews-count {
    font-size: 13.5px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 24px;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
    width: 100%;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
}

.rating-bar-label {
    width: 12px;
    text-align: right;
}

.rating-bar-track {
    flex: 1;
    height: 8px;
    background: #e0ecea;
    border-radius: 99px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 99px;
    transition: width 0.6s ease;
}

.write-review-trigger-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(10, 143, 124, 0.15);
    transition: all 0.2s ease;
    text-decoration: none;
}

.write-review-trigger-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(10, 143, 124, 0.25);
}

/* Reviews List */
.reviews-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    background: #ffffff;
    padding: 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--border);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.review-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14.5px;
    border: 1px solid var(--border);
}

.reviewer-name {
    font-weight: 700;
    font-size: 14.5px;
    color: var(--text-dark);
}

.review-date {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.review-stars {
    color: #e0ecea;
    font-size: 13px;
    display: flex;
    gap: 2px;
    margin-top: 2px;
}

.review-stars .filled {
    color: var(--accent-gold);
}

.review-text {
    font-size: 14px;
    color: #334e4a;
    line-height: 1.6;
}

/* ── Modal overlay ── */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 74, 64, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* Modal Content Box - Solid Opaque White */
.modal-content {
    background: #ffffff !important;
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
    border: 1.5px solid var(--border);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.modal-overlay.open .modal-content {
    transform: translateY(0);
}

.modal-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1.5px solid var(--border);
    padding-bottom: 14px;
}

.modal-head h3 {
    font-size: 18.5px;
    color: var(--primary-deep);
}

.modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.modal-close:hover {
    color: var(--text-dark);
}

/* Interactive Star Rating Selector */
.rating-selector {
    display: flex;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 8px;
}

.rating-selector .star-btn {
    color: #e0ecea;
    transition: transform 0.1s ease, color 0.1s ease;
    display: inline-flex;
}

.rating-selector .star-btn:hover {
    transform: scale(1.1);
}

.rating-selector .star-btn.active {
    color: var(--accent-gold);
}

.rating-selector .star-btn svg {
    width: 28px;
    height: 28px;
    stroke-width: 2px;
    fill: currentColor;
}

/* Forms general */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    outline: none;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #ffffff;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(10, 143, 124, 0.1);
}

.form-group textarea {
    resize: none;
    height: 100px;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
    border-top: 1.5px solid var(--border);
    padding-top: 18px;
}

.btn-ghost {
    background: #f1f5f9;
    color: var(--text-dark);
    border: 1.5px solid var(--border);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-ghost:hover {
    background: #e2e8f0;
}

/* ── Footer Info Bar (Teal bar at bottom) ── */
.footer-info-bar {
    background: var(--primary-dark);
    padding: 30px 8%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-bar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: white;
}

.info-bar-icon {
    font-size: 20px;
    background: rgba(255, 255, 255, 0.12);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-bar-text h5 {
    font-size: 13.5px;
    font-weight: 800;
    color: white;
    margin-bottom: 2px;
}

.info-bar-text p {
    font-size: 11px;
    opacity: 0.8;
    line-height: 1.4;
}

/* ── Footer ── */
footer {
    background: var(--primary-deep);
    color: white;
    padding: 70px 8% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(2, 1fr);
    gap: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo {
    height: 48px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.12));
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
}

.footer-brand-text h3 {
    font-size: 16px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.2px;
}

.footer-brand-text span {
    font-size: 12px;
    color: var(--primary-light);
    font-weight: 600;
    line-height: 1.2;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13.5px;
    max-width: 360px;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 15px;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: white;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--primary-light);
    border-radius: 99px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13.5px;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12.5px;
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
}

.footer-copyright a:hover {
    color: white;
}

/* Alert system on landing page */
.landing-alert {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #10b981;
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(5, 74, 64, 0.15);
    z-index: 3000;
    font-weight: 700;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.landing-alert.show {
    transform: translateY(0);
    opacity: 1;
}

/* ── Responsive adjustments ── */
@media (max-width: 1024px) {
    .navbar {
        padding: 16px 5%;
    }
    .hero {
        padding-left: 5%;
        padding-right: 5%;
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 150px;
    }
    .hero::before {
        display: none;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-checkmarks {
        justify-content: center;
    }
    .checkmark-item {
        max-width: 220px;
    }
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .tentang-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .floating-mockup-wrapper {
        margin: 0 auto;
    }
    .tentang-content p {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .rating-summary-card {
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
    .footer-info-bar {
        grid-template-columns: repeat(2, 1fr);
        padding-left: 5%;
        padding-right: 5%;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        padding-left: 5%;
        padding-right: 5%;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .carousel-slide {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 580px) {
    .navbar .nav-links {
        display: none;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .floating-tag {
        display: none;
    }
    .floating-lock-badge {
        display: none;
    }
    .tentang-cta-banner {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }
    .carousel-slide {
        flex: 0 0 100%;
    }
    .footer-info-bar {
        grid-template-columns: 1fr;
    }
    .footer-copyright {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ── Lightbox Modal for Screenshots ── */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 45, 41, 0.85); /* Slate green backdrop matching our theme */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.lightbox-overlay.open .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.2s ease;
    z-index: 2600;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* ── Entrance Staggered Reveal Animations ── */
.reveal-init {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Hero Glow Orbs and Dot Grid ── */
.hero-dot-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(10, 143, 124, 0.12) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.75;
}

.hero-glow-orbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.orb-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.55;
}

.orb-1 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(167, 243, 208, 0.6) 0%, rgba(204, 251, 241, 0) 70%);
    top: 10%;
    left: 5%;
    animation: floatOrb1 18s infinite ease-in-out;
}

.orb-2 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(224, 242, 241, 0.8) 0%, rgba(204, 251, 241, 0) 70%);
    bottom: 5%;
    right: 5%;
    animation: floatOrb2 22s infinite ease-in-out;
}

.orb-3 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(254, 243, 199, 0.5) 0%, rgba(253, 230, 138, 0) 70%);
    top: 35%;
    left: 45%;
    animation: floatOrb3 15s infinite ease-in-out;
}

@keyframes floatOrb1 {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); }
    50% { transform: translateY(-30px) translateX(25px) scale(1.08); }
}

@keyframes floatOrb2 {
    0%, 100% { transform: translateY(0) translateX(0) scale(1.08); }
    50% { transform: translateY(35px) translateX(-30px) scale(0.95); }
}

@keyframes floatOrb3 {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); }
    50% { transform: translateY(-25px) translateX(-20px) scale(1.12); }
}



