/* ===== CSS Variables & Reset ===== */
:root {
    /* Base Colors - Light SaaS Theme */
    --bg-main: #F8FAFC;
    --white: #FFFFFF;
    --text-primary: #0F172A;
    --text-secondary: #64748B;
    --border-light: #E2E8F0;

    /* Accent Gradient Colors */
    --accent-start: #3B82F6;
    --accent-end: #8B5CF6;
    --primary: #3B82F6;
    --primary-dark: #2563EB;
    --primary-light: #60A5FA;
    --secondary: #8B5CF6;
    --accent: #F59E0B;
    --success: #10B981;

    /* Legacy dark colors (for gradients/accents) */
    --dark: #0F172A;
    --dark-lighter: #1E293B;

    /* Gray Scale */
    --gray-900: #0F172A;
    --gray-800: #1E293B;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748B;
    --gray-400: #94A3B8;
    --gray-300: #CBD5E1;
    --gray-200: #E2E8F0;
    --gray-100: #F1F5F9;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--accent-start) 0%, var(--accent-end) 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #f59e0b 100%);
    --gradient-background: linear-gradient(135deg,
            rgba(139, 92, 246, 0.12) 0%,
            rgba(59, 130, 246, 0.12) 100%);

    /* Shadows - Soft SaaS Style */
    --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
    --shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.07);
    --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.06);
    --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
    --shadow-card: 0 6px 20px rgba(15, 23, 42, 0.05);

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-blur: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Global Responsive Resets */
img,
video,
svg {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Logo Image Styling */
.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

/* Legacy logo styling for backward compatibility */
.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow);
}

.logo-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Navigation Styles */
.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.btn-contact {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px var(--primary);
}

.btn-contact svg {
    width: 16px;
    height: 16px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 1001;
    pointer-events: auto;
}

.mobile-menu-btn svg {
    width: 28px;
    height: 28px;
}

/* Responsive Navigation */
@media (max-width: 900px) {
    .nav {
        position: fixed;
        top: 73px;
        /* Header height */
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem 1.5rem 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border-light);
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        z-index: 900;
        opacity: 0;
        visibility: hidden;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        width: 100%;
        font-size: 1.125rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .btn-contact {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    padding: 10rem 0 6rem;
    overflow: hidden;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-main) 100%);
}

@media (max-width: 768px) {
    .hero {
        padding: 7rem 0 4rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-stats {
        flex-direction: column;
        width: 100%;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 1200px 800px at top right, rgba(139, 92, 246, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse 800px 600px at bottom left, rgba(59, 130, 246, 0.12) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 1.5rem 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary);
    flex-shrink: 0;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--accent);
    top: 50%;
    left: 10%;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* ===== Articles Section ===== */
.articles-section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--secondary);
    padding: 0.375rem 0.875rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Loading State */
.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 1rem;
}

.loader {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(59, 130, 246, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Error State */
.error-state {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-lg);
}

.error-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.error-state h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.error-state p {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.btn-retry {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-retry:hover {
    transform: translateY(-2px);
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

/* Article Card */
.article-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.article-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.article-card:hover .article-image img {
    transform: scale(1.1);
}

.article-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.article-placeholder svg {
    width: 64px;
    height: 64px;
    color: var(--gray-600);
}

.article-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: var(--primary-light);
    padding: 0.375rem 0.75rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.article-date {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.article-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-excerpt {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.article-footer {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: gap 0.2s;
}

.article-link:hover {
    gap: 0.75rem;
}

.article-link svg {
    width: 16px;
    height: 16px;
}

/* Load More */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-load-more:hover {
    background: var(--gray-100);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-load-more svg {
    width: 20px;
    height: 20px;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 5rem 0;
}

.contact-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-2xl);
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.contact-content {
    position: relative;
}

.contact-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-content p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    position: relative;
}

@media (max-width: 600px) {
    .contact-card {
        flex-direction: column;
        padding: 2.5rem 1.5rem;
        text-align: center;
        gap: 2rem;
    }

    .contact-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-whatsapp,
    .btn-website {
        width: 100%;
        justify-content: center;
    }
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -10px #25D366;
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
}

.btn-website {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 2px solid var(--border-light);
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-website:hover {
    background: var(--gray-100);
    border-color: var(--primary);
    color: var(--primary);
}

/* ===== Footer ===== */
.footer {
    background: var(--white);
    border-top: 1px solid var(--border-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.footer-info .logo {
    margin-bottom: 1rem;
}

.footer-info .logo-name {
    color: var(--text-primary);
}

.footer-info .logo-tagline {
    color: var(--text-secondary);
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    max-width: 300px;
}

.footer-links h4 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-address {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.rss-source a {
    color: var(--primary);
    text-decoration: none;
}

.rss-source a:hover {
    text-decoration: underline;
}

/* ===== Flyer Section ===== */
.flyer-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--white) 50%, var(--bg-main) 100%);
}

/* Service Tabs */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.service-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}

.service-tab svg {
    width: 18px;
    height: 18px;
}

.service-tab {
    cursor: pointer;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.service-tab:hover {
    background: var(--gray-100);
    color: var(--text-primary);
    border-color: var(--primary-light);
}

.service-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Tab Contents */
.tab-contents {
    min-height: 400px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Flyer Grid (for multiple cards) */
.flyer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Flyer Card */
.flyer-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-card);
}

.flyer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.flyer-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

.flyer-card:hover img {
    transform: scale(1.05);
}

.flyer-info {
    padding: 1.5rem;
}

.flyer-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.flyer-badge.badge-ramadan {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.flyer-badge.badge-reguler {
    background: rgba(14, 165, 233, 0.2);
    color: var(--primary-light);
}

.flyer-badge.badge-promo {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #1f2937;
}

.flyer-badge.badge-haji {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.flyer-badge.badge-badal {
    background: linear-gradient(135deg, #ec4899, #f472b6);
}

.flyer-badge.badge-tour {
    background: linear-gradient(135deg, #06b6d4, #22d3ee);
}

.flyer-badge.badge-pembiayaan {
    background: linear-gradient(135deg, #14b8a6, #2dd4bf);
}

.flyer-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.flyer-date {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.flyer-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.flyer-btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.flyer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px var(--primary);
}

/* Flyer Single (for single large card) */
.flyer-single {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.flyer-image-large {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.flyer-image-large img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

.flyer-details h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.flyer-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.flyer-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--border-light);
}

.flyer-features li:last-child {
    border-bottom: none;
}

.flyer-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: var(--white);
    padding: 1rem 1.75rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.flyer-btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -10px #25D366;
}

.flyer-btn-wa svg {
    width: 20px;
    height: 20px;
}

/* Badal Prices */
.badal-prices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.badal-item {
    background: var(--gray-50);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
}

.badal-type {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.badal-price {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent);
}

.features-grid,
.testimonials-grid {
    display: grid;
    gap: 2rem;
}

/* ===== Responsive ===== */
/* ===== Responsive ===== */
@media (min-width: 768px) {

    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
    }

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-info {
        grid-column: span 2;
    }

    .flyer-single {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* =========================================
   MERGED STYLES FROM LAYANAN.CSS
   ========================================= */

/* Packages Hero (formerly page-hero) */
.packages-hero {
    position: relative;
    padding: 9rem 0 4rem;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-main) 100%);
}

.page-hero-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.page-desc {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 2rem;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-tab {
    background: var(--white);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    padding: 0.625rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}

.filter-tab:hover {
    background: var(--gray-100);
    color: var(--text-primary);
    border-color: var(--primary-light);
}

.filter-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Packages Section */
.packages-section {
    padding: 3rem 0 5rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

/* Package Card */
.package-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9) 0%, rgba(30, 41, 59, 0.5) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-color: rgba(14, 165, 233, 0.4);
}

.package-card.sold-out {
    opacity: 0.7;
}

/* NEW CARD DESIGN - Flyer Style */
.package-card-new {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card-new:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.package-card-new.sold-out {
    opacity: 0.85;
}

/* Flyer Image */
.card-flyer-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.card-flyer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.package-card-new:hover .card-flyer-image img {
    transform: scale(1.03);
}

.sold-out-ribbon {
    position: absolute;
    top: 16px;
    right: -35px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 6px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

/* Card Body */
.card-body-new {
    padding: 1.25rem 1.25rem 0.75rem;
}

.card-title-new {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0d7c3d;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

/* Seat Info */
.card-seat-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.seat-label {
    font-size: 0.9375rem;
    color: #374151;
    font-weight: 500;
}

.seat-count {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ef4444;
}

.card-seat-info.available .seat-count {
    color: #10b981;
}

.card-seat-info.low .seat-count {
    color: #f59e0b;
}

.card-seat-info.sold-out .seat-count {
    color: #ef4444;
    font-size: 0.875rem;
}

/* Info Grid */
.card-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
    margin-bottom: 0.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4b5563;
    font-size: 0.8125rem;
}

.info-item svg {
    width: 16px;
    height: 16px;
    color: #9ca3af;
    flex-shrink: 0;
}

.info-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.airline-item {
    grid-column: span 2;
    padding-top: 0.25rem;
}

/* Card Footer */
.card-footer-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-top: 1px solid #e5e7eb;
}

.card-price-new {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
}

.btn-detail-green {
    background: linear-gradient(135deg, #0d7c3d, #10b981);
    color: white;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-detail-green:hover {
    background: linear-gradient(135deg, #065f32, #0d7c3d);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 124, 61, 0.3);
}

/* Local Modal Styles */
/* Note: Main modal styles might exist in style.css, but verifying unique ones */
.modal-new-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    min-height: 500px;
}

.modal-flyer-side {
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-flyer-side img {
    width: 100%;
    max-height: 550px;
    object-fit: contain;
    border-radius: 8px;
}

.modal-info-side {
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
}

.modal-title-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d7c3d;
    line-height: 1.3;
    margin-bottom: 1rem;
    padding-right: 2.5rem;
}

.modal-seat-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.seat-label-modal {
    font-size: 0.9375rem;
    color: #374151;
    font-weight: 500;
}

.seat-count-modal {
    font-size: 1rem;
    font-weight: 700;
    color: #10b981;
}

.modal-seat-row.low .seat-count-modal {
    color: #f59e0b;
}

.modal-seat-row.sold-out .seat-count-modal {
    color: #ef4444;
}

.modal-info-table {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #e5e7eb;
}

.info-row:last-child {
    border-bottom: none;
}

.info-cell {
    padding: 0.625rem 0.875rem;
    border-right: 1px solid #e5e7eb;
}

.info-cell:last-child {
    border-right: none;
}

.info-label {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 0.125rem;
}

.info-value {
    display: block;
    font-size: 0.875rem;
    color: #0d7c3d;
    font-weight: 600;
}

.modal-include-exclude {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.include-box h4,
.exclude-box h4 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.include-box h4 {
    color: #0d7c3d;
}

.exclude-box h4 {
    color: #f59e0b;
}

.include-box p,
.exclude-box p {
    font-size: 0.8125rem;
    line-height: 1.6;
    color: #4b5563;
}

.include-box p {
    color: #0d7c3d;
}

.exclude-box p {
    color: #f59e0b;
}

.modal-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.price-label-big {
    font-size: 1.125rem;
    color: #374151;
    font-weight: 500;
}

.price-value-big {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0d7c3d;
}

.modal-wa-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-wa-admin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0d7c3d, #10b981);
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    flex: 1;
}

.btn-wa-admin:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 124, 61, 0.3);
}

.btn-wa-admin svg {
    width: 18px;
    height: 18px;
}

.btn-wa-admin.btn-wa-outline {
    background: transparent;
    border: 2px solid #0d7c3d;
    color: #0d7c3d;
}

.btn-wa-admin.btn-wa-outline:hover {
    background: rgba(13, 124, 61, 0.1);
}

/* Responsive Modal */
@media (max-width: 900px) {
    .modal-new-layout {
        grid-template-columns: 1fr;
    }

    .modal-flyer-side {
        max-height: 300px;
    }

    .modal-flyer-side img {
        max-height: 280px;
    }

    .modal-include-exclude {
        grid-template-columns: 1fr;
    }

    .modal-wa-buttons {
        flex-direction: column;
    }
}


@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 1.25rem 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .contact-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-whatsapp,
    .btn-website {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-info {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .service-tabs {
        gap: 0.375rem;
    }

    .service-tab {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .service-tab svg {
        width: 14px;
        height: 14px;
    }

    .flyer-grid {
        grid-template-columns: 1fr;
    }

    .flyer-single {
        padding: 1rem;
    }

    .flyer-details h3 {
        font-size: 1.25rem;
    }

    .badal-prices {
        grid-template-columns: 1fr;
    }
}

/* Ensure equal height for grid cards */
.feature-card,
.testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card p,
.testimonial-text {
    flex-grow: 1;
}

/* ===== Modal Popup Styles ===== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.modal-content {
    position: relative;
    z-index: 2;
    background: var(--white);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

/* Modal Content Layout */
.modal-body-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
}

.modal-image-side {
    background: var(--bg-light);
    min-height: 300px;
    position: relative;
}

.modal-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.modal-info-side {
    padding: 2.5rem;
}

/* Modal Typography */
.modal-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.modal-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    display: block;
}

/* Facilities & Specs Grid */
.modal-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius);
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.spec-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    font-weight: 600;
}

.spec-value {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

/* Sections */
.modal-section-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    border-bottom: 2px solid var(--gray-100);
    padding-bottom: 0.5rem;
}

.modal-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.modal-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.modal-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green-500);
    font-weight: 800;
}

/* Price & Action */
.modal-footer-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.modal-price-tag {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.btn-modal-action {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-modal-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -10px var(--primary);
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.2s;
}

.modal-close:hover {
    transform: rotate(90deg);
    background: var(--gray-50);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 1rem;
        max-height: 85vh;
    }

    .modal-body-content {
        grid-template-columns: 1fr;
    }

    .modal-image-side {
        min-height: 200px;
    }

    .modal-info-side {
        padding: 1.5rem;
    }

    .modal-specs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .modal-footer-action {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
        text-align: center;
    }

    .btn-modal-action {
        justify-content: center;
    }
}

/* ===== Animated Header Button ===== */
.header-action-btn {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.btn-shine-anim {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
}

.btn-shine-anim:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.6);
}

.btn-shine-anim::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: 0.5s;
    animation: shine 3s infinite;
}

.btn-shine-anim .arrow-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-shine-anim:hover .arrow-icon {
    transform: translateX(5px);
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}