/* CSS Variables for Theme (Black, Red, Green) */
:root {
    --primary-black: #0f1115;
    --secondary-black: #1a1d24;
    --primary-red: #E63946;
    --hover-red: #D62828;
    --primary-green: #10B981;
    --hover-green: #059669;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --input-bg: #2d3748;
    --glass-bg: rgba(26, 29, 36, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s ease;
}

/* Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-black);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utilities */
.highlight-red {
    color: var(--primary-red);
}

.highlight-green {
    color: var(--primary-green);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-red);
    color: white;
    box-shadow: 0 4px 14px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    background-color: var(--hover-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: white;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.btn-outline-primary {
    background-color: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-main);
}

.btn-outline-primary:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #1EBE5D;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.large-btn {
    padding: 16px 36px;
    font-size: 1.2rem;
}

/* Header / Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(15, 17, 21, 0.95);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    color: white;
    letter-spacing: 0.5px;
}

.logo-text .highlight {
    color: var(--primary-green);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-red);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-red);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 17, 21, 0.95) 0%, rgba(15, 17, 21, 0.7) 50%, rgba(15, 17, 21, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.trust-badge-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary-green);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.trust-text {
    font-size: 0.95rem;
    color: #e5e7eb;
    font-weight: 500;
}

.promo-alert {
    display: inline-block;
    background: rgba(230, 57, 70, 0.1);
    color: #fca5a5;
    border: 1px solid rgba(230, 57, 70, 0.3);
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 0.95rem;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

/* Section Common */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--secondary-black);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--primary-black);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: var(--secondary-black);
}

.red-glow {
    color: var(--primary-red);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.2);
}

.green-glow {
    color: var(--primary-green);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Packages Section */
.packages {
    padding: 100px 0;
    background-color: var(--primary-black);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    justify-content: center;
}

.package-card {
    background: var(--secondary-black);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.package-card.featured {
    border: 1px solid var(--primary-red);
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.1);
}

.card-image {
    position: relative;
    height: 240px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(15, 17, 21, 0.8);
    backdrop-filter: blur(5px);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--glass-border);
}

.card-badge.premium {
    background: var(--primary-red);
    color: white;
    border: none;
}

.card-content {
    padding: 40px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    font-family: var(--font-heading);
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
}

.package-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.package-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.package-features li i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.package-note {
    text-align: center;
    margin-top: 50px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Video Review Section */
.video-section {
    padding: 100px 0;
    background-color: var(--secondary-black);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--primary-black);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-caption {
    padding: 20px;
    text-align: center;
    background: linear-gradient(to right, var(--primary-black), #15181e, var(--primary-black));
    border-top: 1px solid var(--glass-border);
}

.video-caption p {
    color: var(--text-main);
    font-size: 1.05rem;
    font-weight: 500;
}

.video-caption i {
    color: var(--primary-red);
    margin-right: 8px;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: var(--primary-black);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--secondary-black);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Service Area (SEO) Section */
.service-area {
    padding: 80px 0;
    background-color: #0c0e12;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.area-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.area-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.area-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.districts-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.districts-grid span {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.districts-grid span:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: var(--secondary-black);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--primary-black);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.testimonial-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.05);
}

.testimonial-content {
    padding: 30px;
}

.stars {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.review {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Footer & CTA */
.footer {
    background-color: var(--primary-black);
    padding: 80px 0 20px;
    border-top: 1px solid var(--glass-border);
}

.footer-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-black) 0%, #15181e 100%);
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.05) 0%, transparent 60%);
    z-index: 0;
}

.footer-cta>* {
    position: relative;
    z-index: 1;
}

.footer-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.footer-cta p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-about p {
    color: var(--text-muted);
    margin-top: 15px;
}

.footer-contact h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-contact li i {
    color: var(--primary-red);
    margin-top: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-green);
    text-decoration: underline;
}

.footer-contact li a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-contact li a:hover {
    color: var(--primary-green);
}

/* =============================================
   FLOATING WHATSAPP BUTTON
   ============================================= */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
    transition: all 0.3s ease;
    text-decoration: none;
    max-width: 200px;
    overflow: hidden;
    animation: floatPulse 2.5s ease-in-out infinite;
}

.floating-wa i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.floating-wa-label {
    white-space: nowrap;
}

.floating-wa:hover {
    background: #1EBE5D;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.55);
}

@keyframes floatPulse {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
    }

    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7);
    }
}

/* =============================================
   STATS COUNTER SECTION
   ============================================= */
.stats-section {
    background: linear-gradient(135deg, #0c0e12 0%, var(--secondary-black) 100%);
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
}

.stat-item:hover {
    background: rgba(16, 185, 129, 0.06);
    border-color: rgba(16, 185, 129, 0.25);
    transform: translateY(-4px);
}

.stat-number {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.stat-plus {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-red);
    vertical-align: bottom;
    margin-bottom: 4px;
}

.stat-label {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* =============================================
   COUNTDOWN TIMER
   ============================================= */
.countdown-wrap {
    display: inline-block;
    margin-left: 8px;
    background: rgba(230, 57, 70, 0.15);
    border: 1px solid rgba(230, 57, 70, 0.4);
    border-radius: 6px;
    padding: 2px 10px;
    font-size: 0.9em;
}

#countdown-timer {
    color: #ff6b6b;
    font-family: monospace;
    font-size: 1.05em;
    letter-spacing: 1px;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 3rem;
    }

    .packages-grid {
        grid-template-columns: max-content;
    }

    .package-card {
        width: 100%;
        max-width: 450px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-links,
    .nav-btn {
        display: none;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--secondary-black);
        padding: 20px;
        border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active a {
        padding: 10px 0;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .footer-cta h2 {
        font-size: 2rem;
    }

    /* Stats responsive */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2.2rem;
    }

    /* Floating WA: icon only on very small screens */
    .floating-wa-label {
        display: none;
    }

    .floating-wa {
        padding: 14px;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        justify-content: center;
    }

    .floating-wa i {
        font-size: 1.6rem;
    }

    /* Countdown wraps on mobile */
    .countdown-wrap {
        display: block;
        margin: 8px auto 0;
        width: fit-content;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-item {
        padding: 20px 12px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* =============================================
   TRUST BADGES ROW
   ============================================= */
.trust-badges-row {
    background: linear-gradient(135deg, var(--secondary-black), #12151b);
    padding: 28px 0;
    border-bottom: 1px solid var(--glass-border);
}

.trust-badges-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 40px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.trust-badge-item i {
    font-size: 1.3rem;
    color: var(--primary-green);
}

.trust-badge-item:hover {
    color: var(--text-main);
}

/* =============================================
   HOW IT WORKS / CARA PESAN
   ============================================= */
.how-it-works {
    padding: 100px 0;
    background: var(--primary-black);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-card {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    text-align: center;
    padding: 40px 20px 30px;
    background: var(--secondary-black);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    box-shadow: 0 4px 14px rgba(230, 57, 70, 0.4);
}

.step-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
    color: var(--primary-green);
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: white;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-top: 60px;
    flex-shrink: 0;
}

.steps-cta {
    text-align: center;
}

/* =============================================
   HALAL PROCESS TIMELINE
   ============================================= */
.halal-process {
    padding: 100px 0;
    background: var(--secondary-black);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-red), var(--primary-green));
    opacity: 0.4;
}

.process-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 25px 0;
    position: relative;
}

.process-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    border: 2px solid var(--glass-border);
    transition: var(--transition);
}

.process-step:hover .process-icon {
    transform: scale(1.1);
}

.process-content {
    padding-top: 12px;
}

.process-content h3 {
    font-size: 1.15rem;
    color: white;
    margin-bottom: 8px;
}

.process-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.process-cta {
    text-align: center;
}

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery-section {
    padding: 100px 0;
    background: var(--primary-black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--secondary-black);
    border: 1px solid var(--glass-border);
}

.gallery-item--wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item--wide img {
    height: 340px;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 17, 21, 0.95), transparent);
    color: white;
    padding: 30px 18px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.gallery-caption i {
    color: var(--primary-green);
    margin-right: 6px;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* =============================================
   PRICE STRIKETHROUGH
   ============================================= */
.price-wrap {
    margin-bottom: 25px;
}

.price-original {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 2px;
}

.price-save {
    font-size: 0.8rem;
    color: var(--primary-green);
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    margin-top: 4px;
}

/* =============================================
   COMPARISON TABLE
   ============================================= */
.comparison-table-wrap {
    margin-top: 70px;
    background: var(--secondary-black);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
}

.comparison-title {
    text-align: center;
    padding: 30px 20px 20px;
    font-size: 1.3rem;
    color: white;
    border-bottom: 1px solid var(--glass-border);
}

.comparison-title i {
    color: var(--primary-green);
    margin-right: 8px;
}

.comparison-scroll {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
    min-width: 600px;
}

.comparison-table th {
    padding: 16px 14px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: white;
    background: rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid var(--glass-border);
}

.comparison-table th small {
    display: block;
    color: var(--primary-green);
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 4px;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    padding: 13px 14px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    vertical-align: middle;
}

.comparison-table td:first-child {
    text-align: left;
    color: var(--text-main);
    font-weight: 500;
}

.comparison-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.col-featured {
    background: rgba(230, 57, 70, 0.06) !important;
    border-left: 1px solid rgba(230, 57, 70, 0.2);
    border-right: 1px solid rgba(230, 57, 70, 0.2);
    color: var(--text-main) !important;
}

.btn-sm {
    padding: 7px 16px !important;
    font-size: 0.82rem !important;
    border-radius: 6px !important;
}

/* =============================================
   PRICE CALCULATOR
   ============================================= */
.calculator-section {
    padding: 100px 0;
    background: var(--secondary-black);
}

.calculator-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--primary-black);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    padding: 50px;
    max-width: 960px;
    margin: 0 auto;
}

.calc-field {
    margin-bottom: 32px;
}

.calc-field label {
    display: block;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.calc-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.calc-radio-label {
    cursor: pointer;
}

.calc-radio-label input[type="radio"] {
    display: none;
}

.calc-radio-btn {
    display: inline-block;
    padding: 9px 16px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition);
    background: var(--secondary-black);
}

.calc-radio-label input[type="radio"]:checked+.calc-radio-btn {
    border-color: var(--primary-green);
    color: var(--primary-green);
    background: rgba(16, 185, 129, 0.1);
}

.calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--secondary-black);
    outline: none;
    cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-green);
    cursor: pointer;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

.calc-slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.calc-result {
    background: linear-gradient(135deg, var(--secondary-black), #15181e);
    border-radius: 16px;
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.calc-result-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary-green);
}

.calc-result h3 {
    font-size: 1.4rem;
    color: white;
}

.calc-result-price {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary-green);
    font-family: var(--font-heading);
}

.calc-result p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* =============================================
   SOCIAL PROOF TOAST
   ============================================= */
.sp-toast {
    position: fixed;
    bottom: 100px;
    left: 24px;
    z-index: 9998;
    max-width: 300px;
    pointer-events: none;
}

.sp-toast-inner {
    background: var(--secondary-black);
    border: 1px solid var(--glass-border);
    border-left: 3px solid var(--primary-green);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    animation: toastIn 0.4s ease, toastOut 0.4s ease 4s forwards;
    pointer-events: auto;
}

.sp-toast-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.sp-toast-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-main);
}

.sp-toast-text span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toastOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}

/* =============================================
   STICKY MOBILE CTA BAR
   ============================================= */
.sticky-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9990;
    background: #25D366;
    padding: 0;
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 20px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 0.2px;
}

.sticky-cta-btn i {
    font-size: 1.3rem;
}

/* =============================================
   FOOTER NAVIGATION COLUMN
   ============================================= */
.footer-links h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* =============================================
   RESPONSIVE — EXTENDED
   ============================================= */
@media (max-width: 992px) {
    .calculator-card {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item--wide {
        grid-column: span 2;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .sticky-cta-bar {
        display: block;
    }

    body {
        padding-bottom: 60px;
    }

    .floating-wa {
        bottom: 75px;
    }

    .trust-badges-grid {
        gap: 10px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item--wide {
        grid-column: span 1;
    }

    .gallery-item img,
    .gallery-item--wide img {
        height: 220px;
    }

    .gallery-caption {
        transform: translateY(0);
        background: linear-gradient(to top, rgba(15, 17, 21, 0.9), transparent);
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 10px;
        font-size: 0.82rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sp-toast {
        left: 10px;
        max-width: calc(100vw - 20px);
    }

    .calculator-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .trust-badges-grid {
        gap: 8px 16px;
    }

    .trust-badge-item {
        font-size: 0.8rem;
    }

    .trust-badge-item i {
        font-size: 1.1rem;
    }
}

/* =============================================
   READING PROGRESS BAR
   ============================================= */
#reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 9999;
    pointer-events: none;
}

#reading-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, var(--primary-red), #f59e0b, var(--primary-green));
    transition: width 0.1s linear;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
}

/* =============================================
   BACK TO TOP BUTTON
   ============================================= */
#back-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    z-index: 9997;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--secondary-black);
    border: 1px solid var(--glass-border);
    color: var(--primary-green);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

#back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

#back-to-top:hover {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

@media (max-width: 768px) {
    #back-to-top {
        bottom: 80px;
        right: 16px;
        width: 42px;
        height: 42px;
    }
}

/* =============================================
   EXIT INTENT POPUP
   ============================================= */
.exit-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.exit-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.exit-popup-card {
    position: relative;
    z-index: 1;
    background: var(--secondary-black);
    border: 1px solid var(--glass-border);
    border-top: 3px solid var(--primary-red);
    border-radius: 24px;
    padding: 50px 44px 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
    animation: popupIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.exit-popup-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
    padding: 4px 8px;
}

.exit-popup-close:hover {
    color: var(--primary-red);
    transform: scale(1.2);
}

.exit-popup-badge {
    display: inline-block;
    background: rgba(230, 57, 70, 0.15);
    color: var(--primary-red);
    border: 1px solid rgba(230, 57, 70, 0.3);
    border-radius: 20px;
    padding: 5px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

.exit-popup-card h2 {
    font-size: 1.7rem;
    color: white;
    margin-bottom: 14px;
    line-height: 1.3;
    font-family: var(--font-heading);
}

.exit-popup-card>p {
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.exit-popup-card>p strong {
    color: var(--text-main);
}

#exit-countdown {
    color: var(--primary-red);
    font-family: monospace;
    font-size: 1.1em;
    font-weight: 700;
}

.exit-popup-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}

.exit-popup-features span {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.82rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.exit-popup-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    padding: 15px 32px;
    border-radius: 50px;
    margin-bottom: 16px;
    width: 100%;
    justify-content: center;
}

.exit-popup-dismiss {
    color: var(--text-muted);
    font-size: 0.82rem;
    cursor: pointer;
    text-decoration: underline;
    transition: var(--transition);
    margin-bottom: 0 !important;
}

.exit-popup-dismiss:hover {
    color: var(--primary-red);
}

@media (max-width: 480px) {
    .exit-popup-card {
        padding: 40px 24px 30px;
    }

    .exit-popup-card h2 {
        font-size: 1.4rem;
    }
}