/*
 * LTI Tour - Landing Page Styles
 * Modern Islami • Premium • Tenang
 * Dominan Putih, Aksen Orange
 */

/* ============================================
   CSS Variables / Design Tokens
   ============================================ */
:root {
    /* Colors */
    --color-white: #FFFFFF;
    --color-off-white: #F7F7F8;
    --color-orange: #FF6A00;
    --color-deep-orange: #E85B00;
    --color-black: #111111;
    --color-gray: #5B5F66;
    --color-border: #E7E7EA;
    --color-success: #22C55E;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --container-max: 1140px;
    --section-padding: 80px;
    --section-padding-mobile: 48px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-black);
    background-color: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-black);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p {
    color: var(--color-gray);
    line-height: 1.7;
}

.text-orange { color: var(--color-orange); }
.text-center { text-align: center; }

/* ============================================
   Container & Layout
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding) 0;
}

.section-alt {
    background-color: var(--color-off-white);
}

.grid {
    display: grid;
    gap: 24px;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ============================================
   Header / Navbar
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

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

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-black);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    color: var(--color-gray);
    transition: var(--transition-fast);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-orange);
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-orange);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(255, 106, 0, 0.3);
}

.btn-primary:hover {
    background: var(--color-deep-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-black);
    border: 2px solid var(--color-border);
}

.btn-outline:hover {
    border-color: var(--color-orange);
    color: var(--color-orange);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-icon {
    font-size: 1.25rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-black);
    transition: var(--transition-fast);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.80) 0%,
        rgba(0, 0, 0, 0.65) 40%,
        rgba(0, 0, 0, 0.45) 100%
    );
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: center;
    padding: 60px 0;
}

.hero-content {
    color: var(--color-white);
}

.hero-content h1 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    margin-bottom: 28px;
    max-width: 600px;
}

/* Social Proof Pills */
.social-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.social-proof-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Urgency Card */
.urgency-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-xl);
}

.urgency-card h3 {
    margin-bottom: 24px;
    text-align: center;
}

.urgency-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.urgency-stat {
    flex: 1;
    text-align: center;
    padding: 16px;
    background: var(--color-off-white);
    border-radius: var(--radius-md);
}

.urgency-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-orange);
    font-family: var(--font-heading);
}

.urgency-stat-label {
    font-size: 0.75rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.urgency-card .btn {
    width: 100%;
    margin-bottom: 12px;
}

.urgency-card .btn-outline {
    margin-bottom: 0;
}

/* ============================================
   Cards
   ============================================ */
.card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--color-border);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    background: var(--color-off-white);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.card h4 {
    margin-bottom: 12px;
}

.card p {
    font-size: 0.9375rem;
}

/* Problem Card */
.problem-card {
    border-left: 4px solid #EF4444;
}

.problem-card .card-icon {
    background: #FEE2E2;
}

/* Solution Card */
.solution-card {
    border-left: 4px solid var(--color-success);
}

.solution-card .card-icon {
    background: #DCFCE7;
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.0625rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 106, 0, 0.1);
    color: var(--color-orange);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
}

/* ============================================
   Package Section
   ============================================ */
.package-box {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-off-white) 100%);
    border: 2px solid var(--color-orange);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.package-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.1) 0%, transparent 70%);
}

.package-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--color-orange);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.package-header {
    margin-bottom: 32px;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.package-list {
    list-style: none;
    display: grid;
    gap: 20px;
}

.package-list li {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.package-list-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--color-off-white);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.package-list-content h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 4px;
}

.package-list-content p {
    font-size: 0.875rem;
    margin: 0;
}

/* ============================================
   Video Section
   ============================================ */
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-wrapper::before {
    content: '';
    display: block;
    padding-top: 56.25%; /* 16:9 aspect ratio */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   Promo Section
   ============================================ */
.promo-box {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
    border: 2px solid var(--color-orange);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-box::before,
.promo-box::after {
    content: '🔥';
    position: absolute;
    font-size: 3rem;
    opacity: 0.2;
}

.promo-box::before {
    top: 20px;
    left: 20px;
}

.promo-box::after {
    bottom: 20px;
    right: 20px;
}

.promo-amount {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--color-orange);
    font-family: var(--font-heading);
    margin: 16px 0;
}

.promo-text {
    font-size: 1.125rem;
    color: var(--color-black);
    font-weight: 500;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--color-orange);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-heading);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-orange);
    transition: var(--transition-fast);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    margin: 0;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--color-black) 0%, #1F2937 100%);
    color: var(--color-white);
    text-align: center;
}

.cta-section h2 {
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 1.125rem;
}

.cta-section .btn-primary {
    font-size: 1.125rem;
    padding: 18px 36px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-off-white);
    padding: 40px 0;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    height: 32px;
}

.footer-info {
    font-size: 0.875rem;
    color: var(--color-gray);
}

.footer-info span {
    display: block;
}

.footer-credit {
    font-size: 0.8125rem;
    color: var(--color-gray);
}

.footer-credit a {
    color: var(--color-orange);
    font-weight: 500;
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .urgency-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section {
        padding: var(--section-padding-mobile) 0;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-bg::after {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.80) 0%,
            rgba(0, 0, 0, 0.50) 100%
        );
    }
    
    .social-proof {
        flex-direction: column;
    }
    
    .social-proof-pill {
        justify-content: center;
    }
    
    .urgency-stats {
        flex-direction: column;
    }
    
    .package-box {
        padding: 24px;
    }
    
    .package-badge {
        position: relative;
        top: 0;
        right: 0;
        display: inline-flex;
        margin-bottom: 16px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        height: 64px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .card {
        padding: 24px;
    }
    
    .promo-box {
        padding: 24px;
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
[data-animate-delay="1"] { transition-delay: 0.1s; }
[data-animate-delay="2"] { transition-delay: 0.2s; }
[data-animate-delay="3"] { transition-delay: 0.3s; }

/* ============================================
   Mobile Overflow Fixes
   ============================================ */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

* {
    max-width: 100%;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-content p {
        font-size: 0.9375rem;
    }
    
    .header .btn {
        padding: 10px 16px;
        font-size: 0.8125rem;
    }
    
    .header-inner {
        gap: 12px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .social-proof-pill {
        font-size: 0.8125rem;
        padding: 6px 12px;
        width: 100%;
        text-align: center;
    }
    
    .urgency-card {
        padding: 24px;
        border-radius: 16px;
    }
    
    .urgency-stat-number {
        font-size: 1.5rem;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 0.9375rem;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .promo-amount {
        font-size: 1.75rem;
    }
    
    .faq-question {
        padding: 16px;
        font-size: 0.9375rem;
    }
    
    .faq-answer p {
        padding: 0 16px 16px;
        font-size: 0.875rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-section p {
        font-size: 0.9375rem;
    }
    
    .video-wrapper {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .hero-content h1 {
        font-size: 1.375rem;
        line-height: 1.4;
    }
    
    .hero-content p {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    .social-proof {
        gap: 8px;
    }
    
    .urgency-card h3 {
        font-size: 1.125rem;
    }
    
    .urgency-stats {
        gap: 12px;
    }
    
    .urgency-stat {
        padding: 12px;
    }
    
    .card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
    
    .package-list li {
        padding: 12px;
        flex-direction: column;
        text-align: center;
    }
    
    .package-list-icon {
        margin: 0 auto;
    }
    
    .footer-info span {
        font-size: 0.8125rem;
    }
    
    .wa-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .btn-lg .wa-icon svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   Additional Mobile Fixes for Buttons & CTA
   ============================================ */
.btn {
    word-wrap: break-word;
    white-space: normal;
    text-align: center;
}

@media (max-width: 768px) {
    .cta-section .btn-primary {
        padding: 16px 20px;
        font-size: 0.875rem;
        max-width: 100%;
        white-space: normal;
        line-height: 1.4;
    }
    
    .urgency-card .btn {
        font-size: 0.875rem;
        padding: 14px 16px;
        white-space: normal;
    }
    
    .promo-box .btn {
        font-size: 0.875rem;
        padding: 14px 16px;
        white-space: normal;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px !important;
        max-width: 100% !important;
    }
    
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-section .btn-primary {
        padding: 14px 16px;
        font-size: 0.8125rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }
    
    .header .nav .btn-primary {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .urgency-card .btn-lg {
        padding: 12px 14px;
        font-size: 0.8125rem;
    }
    
    .promo-box .btn-lg {
        padding: 12px 14px;
        font-size: 0.8125rem;
    }
    
    h1, h2, h3, h4 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .promo-box h3 {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .promo-amount {
        font-size: 1.5rem;
    }
    
    .promo-text {
        font-size: 0.875rem;
    }
    
    .footer-content {
        padding: 0 8px;
    }
    
    .footer-info {
        word-wrap: break-word;
    }
}

@media (max-width: 380px) {
    .header .nav .btn-primary span:last-child {
        display: none;
    }
    
    .header .nav .btn-primary::after {
        content: 'Daftar';
    }
    
    .cta-section .btn-primary {
        font-size: 0.75rem;
        padding: 12px;
    }
    
    .section-header h2 {
        font-size: 1.25rem;
    }
}

/* ============================================
   Mobile Header - Hide Menu, Button Right
   ============================================ */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: none !important;
    }
    
    .header-inner {
        justify-content: space-between;
    }
    
    .nav {
        gap: 0;
    }
    
    .header .nav .btn-primary {
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 32px;
    }
    
    .header .nav .btn-primary {
        padding: 10px 14px;
        font-size: 0.75rem;
        gap: 6px;
    }
    
    .header .nav .btn-primary .wa-icon svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 380px) {
    .header .nav .btn-primary {
        padding: 8px 12px;
        font-size: 0.6875rem;
    }
    
    .logo img {
        height: 28px;
    }
}

/* ============================================
   Bigger Headline on Mobile
   ============================================ */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.75rem !important;
        line-height: 1.35;
        font-weight: 700;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem !important;
        line-height: 1.4;
    }
}

@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 1.375rem !important;
    }
}

/* ============================================
   Even Bigger Headline on Mobile
   ============================================ */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.3;
        font-weight: 700;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem !important;
        line-height: 1.35;
    }
}

@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 1.5rem !important;
    }
}

/* ============================================
   Center Hero Content on Mobile
   ============================================ */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        text-align: center;
    }
    
    .hero-content p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-proof {
        justify-content: center;
        align-items: center;
    }
    
    .social-proof-pill {
        justify-content: center;
    }
}

/* ============================================
   Testimonial Section
   ============================================ */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    transition: var(--transition-normal);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: var(--color-orange);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-rating span {
    color: #FBBF24;
    font-size: 1.125rem;
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-orange), var(--color-deep-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.testimonial-info h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 0.8125rem;
    color: var(--color-gray);
}

/* ============================================
   Countdown Timer
   ============================================ */
.countdown-wrapper {
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-deep-orange) 100%);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    margin-bottom: 24px;
    text-align: center;
    color: white;
}

.countdown-title {
    font-size: 0.9375rem;
    margin-bottom: 16px;
    opacity: 0.9;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    min-width: 70px;
}

.countdown-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
}

.countdown-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.85;
    margin-top: 4px;
}

.countdown-expired {
    font-size: 1.125rem;
    font-weight: 600;
}

@media (max-width: 480px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 10px 12px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .countdown-timer {
        gap: 10px;
    }
}

/* ============================================
   Countdown Timer - Always 1 Row
   ============================================ */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap !important;
}

.countdown-item {
    min-width: 60px;
    padding: 10px 12px;
    flex-shrink: 1;
}

.countdown-number {
    font-size: 1.5rem;
}

.countdown-label {
    font-size: 0.625rem;
}

@media (max-width: 480px) {
    .countdown-timer {
        gap: 8px;
    }
    
    .countdown-item {
        min-width: 50px;
        padding: 8px 10px;
    }
    
    .countdown-number {
        font-size: 1.25rem;
    }
    
    .countdown-label {
        font-size: 0.5625rem;
    }
}

@media (max-width: 360px) {
    .countdown-timer {
        gap: 6px;
    }
    
    .countdown-item {
        min-width: 45px;
        padding: 6px 8px;
    }
    
    .countdown-number {
        font-size: 1.125rem;
    }
}

/* ============================================
   Partner/Mitra Section
   ============================================ */
.partner-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    transition: var(--transition-normal);
    filter: grayscale(50%);
}

.partner-item:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.partner-logo {
    height: 50px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.partner-name {
    font-size: 0.75rem;
    color: var(--color-gray);
    text-align: center;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    font-size: 0.875rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Gallery Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius-lg);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    border: none;
}

@media (max-width: 480px) {
    .partner-grid {
        gap: 20px;
    }
    
    .partner-logo {
        height: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

/* ============================================
   Redesigned Urgency Stats - Glowing + Progress
   ============================================ */
.urgency-stats-new {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 20px 0;
}

.urgency-stat-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,248,240,0.95) 100%);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 
        0 4px 20px rgba(255, 106, 0, 0.15),
        0 0 0 1px rgba(255, 106, 0, 0.1),
        inset 0 1px 0 rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
    animation: urgencyPulse 2s ease-in-out infinite;
}

.urgency-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6A00, #FF8C42, #FF6A00);
    background-size: 200% 100%;
    animation: gradientMove 2s linear infinite;
}

@keyframes urgencyPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 106, 0, 0.15), 0 0 0 1px rgba(255, 106, 0, 0.1); }
    50% { box-shadow: 0 4px 30px rgba(255, 106, 0, 0.25), 0 0 0 2px rgba(255, 106, 0, 0.2); }
}

@keyframes gradientMove {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.urgency-stat-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #FF6A00, #FF8C42);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
}

.urgency-stat-content {
    flex: 1;
}

.urgency-stat-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 600;
}

.urgency-stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}

.urgency-stat-value span {
    color: #FF6A00;
}

/* Progress Bar for Seats */
.urgency-progress-wrapper {
    margin-top: 8px;
}

.urgency-progress-bar {
    height: 8px;
    background: #E7E7EA;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.urgency-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF6A00, #FF8C42);
    border-radius: 10px;
    transition: width 1s ease;
    position: relative;
}

.urgency-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.urgency-progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.6875rem;
    color: #888;
    margin-top: 4px;
}

/* Limited Badge */
.urgency-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: badgePulse 1.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive */
@media (min-width: 480px) {
    .urgency-stats-new {
        flex-direction: row;
    }
    
    .urgency-stat-card {
        flex: 1;
    }
}

/* ============================================
   Promo Section - Animated & Eye-catching
   ============================================ */

/* Promo Box Glow */
.promo-box {
    position: relative;
    overflow: hidden;
}

.promo-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,106,0,0.1), transparent 30%);
    animation: promoRotate 4s linear infinite;
}

@keyframes promoRotate {
    100% { transform: rotate(360deg); }
}

/* Fire emoji shake */
.promo-box h3 {
    position: relative;
    z-index: 2;
}

.fire-shake {
    display: inline-block;
    animation: fireShake 0.5s ease-in-out infinite;
}

@keyframes fireShake {
    0%, 100% { transform: rotate(-5deg) scale(1); }
    25% { transform: rotate(5deg) scale(1.1); }
    50% { transform: rotate(-3deg) scale(1.05); }
    75% { transform: rotate(3deg) scale(1.1); }
}

/* Price Glow Animation */
.promo-amount {
    position: relative;
    z-index: 2;
    animation: priceGlow 2s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% { 
        text-shadow: 0 0 10px rgba(255,106,0,0.3); 
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 30px rgba(255,106,0,0.6), 0 0 60px rgba(255,106,0,0.3);
        transform: scale(1.02);
    }
}

/* Countdown Timer Enhanced */
.countdown-wrapper {
    position: relative;
    z-index: 2;
    animation: countdownPulse 1s ease-in-out infinite;
}

@keyframes countdownPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.01); }
}

.countdown-number {
    animation: numberBounce 1s ease-in-out infinite;
}

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

/* CTA Button - Attention Grabbing */
.promo-box .btn-primary,
.cta-animated {
    position: relative;
    z-index: 2;
    animation: ctaPulse 1.5s ease-in-out infinite, ctaShine 3s linear infinite;
    overflow: hidden;
}

@keyframes ctaPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 106, 0, 0.4);
    }
    50% { 
        transform: scale(1.03);
        box-shadow: 0 6px 25px rgba(255, 106, 0, 0.6), 0 0 40px rgba(255, 106, 0, 0.3);
    }
}

.promo-box .btn-primary::before,
.cta-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: ctaShine 2s linear infinite;
}

@keyframes ctaShine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* Ring Animation around button */
.promo-box .btn-primary::after,
.cta-animated::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 16px;
    border: 2px solid rgba(255, 106, 0, 0.5);
    animation: ringPulse 1.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ringPulse {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.5;
        transform: scale(1.05);
    }
}

/* Floating Arrow Animation */
.btn-arrow {
    display: inline-block;
    animation: arrowBounce 0.6s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Urgency Badge Flash */
.promo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8125rem;
    font-weight: 700;
    margin-bottom: 16px;
    animation: badgeFlash 1s ease-in-out infinite;
}

@keyframes badgeFlash {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.9;
        transform: scale(1.05);
    }
}

/* Hand pointer animation */
.pointing-hand {
    display: inline-block;
    animation: pointBounce 0.8s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes pointBounce {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    50% { transform: translateX(5px) rotate(-10deg); }
}

/* ============================================
   Simple Zoom In/Out Button Animation
   ============================================ */
.promo-box .btn-primary,
.cta-animated {
    animation: zoomInOut 1.2s ease-in-out infinite !important;
}

.promo-box .btn-primary::before,
.cta-animated::before,
.promo-box .btn-primary::after,
.cta-animated::after {
    display: none !important;
}

@keyframes zoomInOut {
    0%, 100% { 
        transform: scale(1);
    }
    50% { 
        transform: scale(1.08);
    }
}

/* ============================================
   Fix Desktop Urgency Stats
   ============================================ */
.urgency-stats-new {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 20px 0;
    max-width: 100%;
}

.urgency-stat-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,248,240,0.98) 100%);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 4px 20px rgba(255, 106, 0, 0.15);
    position: relative;
    overflow: visible;
    min-width: 0;
    flex-shrink: 1;
}

.urgency-stat-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #FF6A00, #FF8C42);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.urgency-stat-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.urgency-stat-label {
    font-size: 0.6875rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.urgency-stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    white-space: nowrap;
}

.urgency-badge {
    position: absolute;
    top: -8px;
    right: 12px;
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
    font-size: 0.5625rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.urgency-progress-wrapper {
    margin-top: 6px;
}

.urgency-progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.625rem;
    color: #888;
    margin-top: 3px;
}

/* Desktop: Side by side with proper sizing */
@media (min-width: 500px) {
    .urgency-stats-new {
        flex-direction: row;
        gap: 12px;
    }
    
    .urgency-stat-card {
        flex: 1;
        min-width: 0;
        max-width: 50%;
    }
}

/* Larger desktop */
@media (min-width: 768px) {
    .urgency-stat-card {
        padding: 24px;
        gap: 16px;
    }
    
    .urgency-stat-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        font-size: 1.75rem;
    }
    
    .urgency-stat-label {
        font-size: 0.75rem;
    }
    
    .urgency-stat-value {
        font-size: 1.5rem;
    }
    
    .urgency-badge {
        font-size: 0.625rem;
        padding: 5px 10px;
    }
}

/* ============================================
   Force Stack (2 Rows) - Override All
   ============================================ */
.urgency-stats-new {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    max-width: 400px !important;
    margin: 20px auto !important;
}

.urgency-stat-card {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
}

/* ============================================
   Clean Up Lines & Card Design
   ============================================ */
.urgency-stat-card::before {
    display: none !important;
}

.urgency-stat-card {
    border: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    animation: none !important;
}

.promo-box::before {
    display: none !important;
}

/* ============================================
   Live Visitor Counter
   ============================================ */
.visitor-counter {
    position: fixed;
    bottom: 100px;
    left: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 50px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #333;
    animation: slideInLeft 0.5s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.visitor-counter-dot {
    width: 10px;
    height: 10px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.visitor-counter-number {
    font-weight: 700;
    color: #FF6A00;
}

.visitor-counter-icon {
    font-size: 1rem;
}

@media (max-width: 480px) {
    .visitor-counter {
        bottom: 80px;
        left: 10px;
        padding: 8px 14px;
        font-size: 0.75rem;
    }
}
