/* =========================================
   KEMBARA KORBAN 1001 ASNAF SDN BHD
   Main Stylesheet
   ========================================= */

/* ---- CSS VARIABLES ---- */
:root {
    --teal: #0A8A7B;
    --teal-dark: #076b5f;
    --teal-light: #0fb39e;
    --teal-pale: #e6f5f3;
    --red: #C41E24;
    --red-dark: #a01820;
    --red-light: #e0272f;
    --gold: #D4A843;
    --gold-dark: #b8901e;
    --dark: #1a1a1a;
    --dark-2: #2d2d2d;
    --gray: #555555;
    --gray-light: #888888;
    --border: #e0e0e0;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --font-body: 'Poppins', sans-serif;
    --font-arabic: 'Amiri', serif;
}

/* ---- 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(--dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
    font-family: inherit;
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--dark);
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(10,138,123,0.15);
}

/* ---- CONTAINER ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(10,138,123,0.35);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--teal-light), var(--teal));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10,138,123,0.45);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}
.btn-large { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-red {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(196,30,36,0.35);
}
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,30,36,0.45); }
.w-full { width: 100%; justify-content: center; }

/* ---- SECTION STYLES ---- */
.section { padding: 5rem 0; position: relative; overflow: hidden; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
    display: inline-block;
    background: var(--teal-pale);
    color: var(--teal-dark);
    padding: 0.35rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ---- ISLAMIC PATTERN ---- */
.section-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(10,138,123,0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212,168,67,0.04) 0%, transparent 50%);
    pointer-events: none;
}
.section-pattern-alt {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(10,138,123,0.03) 0%, rgba(196,30,36,0.02) 100%);
    pointer-events: none;
}

/* =====================
   HEADER
   ===================== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(10,138,123,0.12);
    transition: var(--transition);
}
.header.scrolled {
    box-shadow: var(--shadow-md);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1rem;
}
.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}
.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.logo-name {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--teal);
    letter-spacing: 0.03em;
}
.logo-sub {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 0.05em;
}
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-desktop a {
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--dark-2);
    transition: var(--transition);
}
.nav-desktop a:hover { color: var(--teal); background: var(--teal-pale); }
.nav-desktop .nav-btn {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    margin-left: 0.5rem;
}
.nav-desktop .nav-btn:hover {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    transform: translateY(-1px);
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-mobile {
    display: none;
    flex-direction: column;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
}
.nav-mobile.open { display: flex; }
.mobile-link {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    color: var(--dark-2);
    transition: var(--transition);
}
.mobile-link:hover { color: var(--teal); background: var(--teal-pale); }
.mobile-cta {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white) !important;
    text-align: center;
    border-radius: 50px;
    margin-top: 0.5rem;
    font-weight: 600;
}

/* =====================
   HERO
   ===================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a3d35 0%, #0A8A7B 40%, #0d6b5d 70%, #1a0505 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 72px;
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 80px),
        repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 80px);
    pointer-events: none;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(196,30,36,0.15) 0%, transparent 60%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 1.5rem;
    color: var(--white);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}
.hero-arabic {
    display: block;
    font-family: var(--font-arabic);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-highlight { color: #7fffd4; }
.hero-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.45rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.hero-bnpl {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212,168,67,0.2);
    border: 1px solid rgba(212,168,67,0.5);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #ffe9a0;
    margin-bottom: 2rem;
}
.hero-price-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}
.price-chip {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.88rem;
    backdrop-filter: blur(8px);
}
.price-chip strong { color: #7fffd4; font-size: 1rem; }
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* =====================
   STATS BAR
   ===================== */
.stats-bar {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    padding: 2.5rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.stat-item {
    text-align: center;
    color: var(--white);
    padding: 0.75rem;
}
.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.stat-item span:nth-child(2) { font-size: 1.5rem; font-weight: 700; }
.stat-label {
    display: block;
    font-size: 0.82rem;
    opacity: 0.85;
    margin-top: 0.35rem;
    font-weight: 500;
}

/* =====================
   TENTANG KAMI
   ===================== */
.tentang { background: var(--bg-light); }
.tentang-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}
.tentang-intro p {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}
.vm-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--teal);
}
.vm-icon {
    width: 45px; height: 45px;
    background: var(--teal-pale);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--teal);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}
.vm-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.vm-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

.achievement-list h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.25rem; color: var(--dark); }
.achievement-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.achievement-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.achievement-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.achievement-icon.teal { background: var(--teal-pale); color: var(--teal); }
.achievement-icon.gold { background: #fef9e7; color: var(--gold-dark); }
.achievement-icon.red { background: #fdecea; color: var(--red); }
.achievement-item strong { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.2rem; color: var(--dark); }
.achievement-item p { font-size: 0.82rem; color: var(--gray); margin: 0; }

.why-us-card {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
}
.why-us-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.5rem; }
.why-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 0;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.why-list li:last-child { border-bottom: none; }
.why-list li i { color: #7fffd4; font-size: 0.8rem; flex-shrink: 0; }

.location-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.location-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; color: var(--dark); display: flex; align-items: center; gap: 0.5rem; }
.location-card h3 i { color: var(--red); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.loc-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--dark-2);
    font-weight: 500;
}
.flag { font-size: 1.1rem; }

/* =====================
   PAKEJ KORBAN
   ===================== */
.pakej { background: var(--white); }
.bnpl-notice {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: linear-gradient(135deg, #fffbf0, #fff8e1);
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    padding: 1.25rem 1.75rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(212,168,67,0.15);
}
.bnpl-icon {
    width: 50px; height: 50px; flex-shrink: 0;
    background: var(--gold);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
}
.bnpl-notice strong { font-size: 1rem; color: var(--dark); display: block; margin-bottom: 0.25rem; }
.bnpl-notice p { font-size: 0.88rem; color: var(--gray); margin: 0; }

.pakej-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin-bottom: 2rem;
}
.pakej-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}
.pakej-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--teal-light));
}
.pakej-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}
.pakej-card.featured {
    border-color: var(--teal);
    background: linear-gradient(145deg, #f0faf9, #ffffff);
    box-shadow: var(--shadow-md);
}
.pakej-badge {
    position: absolute;
    top: 1rem; right: 1rem;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
}
.pakej-badge.popular { background: #fdecea; color: var(--red); }
.pakej-badge.jimat { background: #e7f5f0; color: #1a7a5e; }
.pakej-badge.pilihan { background: #fef9e7; color: var(--gold-dark); }
.pakej-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}
.pakej-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.35rem;
}
.pakej-location {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 1rem;
}
.pakej-price { margin-bottom: 1.5rem; }
.price-main {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--teal);
    display: block;
    line-height: 1;
}
.price-unit { font-size: 0.82rem; color: var(--gray); }
.pakej-features { margin-bottom: 1.5rem; }
.feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 0;
    font-size: 0.88rem;
    color: var(--dark-2);
    border-bottom: 1px solid #f0f0f0;
}
.feature:last-child { border-bottom: none; }
.feature-note {
    background: #fff8e8;
    border-radius: 6px;
    padding: 0.4rem 0.6rem !important;
    font-size: 0.8rem !important;
    color: #92630a !important;
    font-style: italic;
    border-bottom: none !important;
    margin-top: 0.3rem;
}
.feature i { color: var(--teal); font-size: 0.8rem; flex-shrink: 0; }
.feature-note i {
    color: #c8870d;
}
.pakej-bnpl {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--teal-pale);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--teal-dark);
    margin-bottom: 1.25rem;
}
.pakej-bnpl i { color: var(--gold-dark); }
.pakej-bnpl strong { color: var(--red); }
.pakej-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: var(--bg-light);
    border-left: 4px solid var(--teal);
    padding: 1.25rem 1.5rem;
    border-radius: 0 var(--radius) var(--radius) 0;
}
.pakej-note i { color: var(--teal); margin-top: 0.2rem; flex-shrink: 0; }
.pakej-note p { font-size: 0.88rem; color: var(--gray); margin: 0; }
.pakej-note a { color: var(--teal); font-weight: 600; text-decoration: underline; }

/* =====================
   KEMPEN SECTION
   ===================== */
.kempen-section { background: var(--bg-light); }
.kempen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.kempen-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    position: relative;
    transition: var(--transition);
    border: 2px solid var(--border);
    overflow: hidden;
}
.kempen-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.kempen-asnaf { border-top: 5px solid var(--teal); }
.kempen-asnaf:hover { border-color: var(--teal); }
.kempen-masjid { border-top: 5px solid #6b3d8e; }
.kempen-masjid:hover { border-color: #6b3d8e; }
.kempen-label {
    display: inline-block;
    padding: 0.25rem 0.85rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--teal-pale);
    color: var(--teal-dark);
}
.kempen-label.new-badge { background: #f3e8ff; color: #6b3d8e; }
.kempen-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.kempen-card h3 {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}
.kempen-asnaf h3 span { color: var(--teal); }
.kempen-masjid h3 span { color: #6b3d8e; }
.kempen-tagline { font-size: 0.9rem; color: var(--gray); margin-bottom: 1.5rem; line-height: 1.6; }
.kempen-features { list-style: none; padding: 0; margin-bottom: 1.5rem; }
.kempen-features li {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.4rem 0;
    font-size: 0.88rem;
    color: var(--dark-2);
    border-bottom: 1px solid #f0f0f0;
}
.kempen-features li:last-child { border-bottom: none; }
.kempen-asnaf .kempen-features li i { color: var(--teal); font-size: 0.78rem; }
.kempen-masjid .kempen-features li i { color: #6b3d8e; font-size: 0.78rem; }
.kempen-price {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background: var(--bg-light);
}
.kempen-price strong { font-size: 1.3rem; color: var(--teal); }
.kempen-masjid .kempen-price strong { color: #6b3d8e; }
.btn-masjid {
    background: linear-gradient(135deg, #6b3d8e, #4a2966);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(107,61,142,0.35);
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    justify-content: center;
    width: 100%;
}
.btn-masjid:hover { background: linear-gradient(135deg, #7d4aa5, #5c3380); transform: translateY(-2px); }
.btn-outline-dark {
    background: transparent;
    color: var(--dark-2);
    border: 2px solid var(--dark-2);
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    justify-content: center;
}
.btn-outline-dark:hover { background: var(--dark-2); color: var(--white); }

/* =====================
   KORBAN CINTA MASJID
   ===================== */
.cinta-masjid { background: var(--white); }
.masjid-tag { background: #f3e8ff !important; color: #6b3d8e !important; }
.cinta-masjid .section-title span { color: #6b3d8e; }
.masjid-hero {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #faf5ff;
    border-radius: var(--radius-lg);
    border: 1px solid #e9d5ff;
}
.masjid-intro h3 { font-size: 1.15rem; font-weight: 800; color: #6b3d8e; margin-bottom: 1rem; }
.masjid-intro p { font-size: 0.92rem; color: var(--gray); line-height: 1.8; margin-bottom: 0.75rem; }
.masjid-stats { display: flex; flex-direction: column; gap: 1rem; }
.masjid-stat {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid #6b3d8e;
}
.ms-num { display: block; font-size: 2rem; font-weight: 900; color: #6b3d8e; line-height: 1; }
.ms-label { font-size: 0.78rem; color: var(--gray); font-weight: 500; margin-top: 0.3rem; display: block; }

.masjid-model { margin-bottom: 3rem; }
.masjid-model h3 { font-size: 1.15rem; font-weight: 800; color: var(--dark); margin-bottom: 2rem; text-align: center; }
.model-flow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.model-step {
    background: var(--white);
    border: 2px solid #e9d5ff;
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem;
    text-align: center;
    width: 185px;
    flex-shrink: 0;
    transition: var(--transition);
}
.model-step:hover { border-color: #6b3d8e; transform: translateY(-4px); box-shadow: var(--shadow-md); }
.model-num {
    width: 32px; height: 32px;
    background: #6b3d8e;
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.9rem;
    margin: 0 auto 0.75rem;
}
.model-icon { font-size: 1.8rem; color: #6b3d8e; margin-bottom: 0.6rem; }
.model-step h4 { font-size: 0.85rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
.model-step p { font-size: 0.78rem; color: var(--gray); line-height: 1.5; }
.model-arrow { color: #6b3d8e; font-size: 1.4rem; opacity: 0.5; flex-shrink: 0; }

.masjid-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 3rem;
}
.masjid-benefit {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
}
.masjid-benefit:hover { border-color: #6b3d8e; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.mb-icon {
    width: 50px; height: 50px;
    background: #f3e8ff;
    color: #6b3d8e;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 1rem;
}
.masjid-benefit h4 { font-size: 0.9rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.masjid-benefit p { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }

.masjid-cta-box {
    background: linear-gradient(135deg, #6b3d8e, #4a2966);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.masjid-cta-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: var(--white);
}
.masjid-cta-content > i { font-size: 2.5rem; opacity: 0.9; flex-shrink: 0; }
.masjid-cta-content h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 0.4rem; }
.masjid-cta-content p { font-size: 0.9rem; opacity: 0.85; max-width: 450px; }
.masjid-cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.masjid-cta-actions .btn-masjid {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    width: auto;
}
.masjid-cta-actions .btn-masjid:hover { background: rgba(255,255,255,0.35); }
.masjid-cta-actions .btn-outline-dark {
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
    width: auto;
}
.masjid-cta-actions .btn-outline-dark:hover { background: rgba(255,255,255,0.15); }

/* =====================
   CARA TEMPAHAN
   ===================== */
.cara-tempahan { background: var(--bg-light); }
.steps-grid {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.step-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    width: 180px;
    flex-shrink: 0;
    transition: var(--transition);
    border: 2px solid transparent;
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.step-num {
    width: 36px; height: 36px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 0.95rem;
    margin: 0 auto 0.75rem;
}
.step-icon { font-size: 2rem; margin-bottom: 0.75rem; color: var(--teal); }
.step-card h4 { font-size: 0.88rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.step-card p { font-size: 0.78rem; color: var(--gray); line-height: 1.5; }
.step-arrow { color: var(--teal); font-size: 1.2rem; opacity: 0.5; flex-shrink: 0; }

.payment-methods { text-align: center; }
.payment-methods h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; }
.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    min-width: 90px;
    transition: var(--transition);
}
.payment-icon:hover { border-color: var(--teal); transform: translateY(-3px); }
.payment-icon i { font-size: 1.8rem; color: var(--gray); }
.payment-icon span { font-size: 0.8rem; font-weight: 600; color: var(--dark-2); }
.highlight-payment {
    border-color: var(--gold) !important;
    background: linear-gradient(135deg, #fffbf0, #fff8e1) !important;
}
.highlight-payment i { color: var(--gold-dark) !important; }
.highlight-payment span { color: var(--gold-dark) !important; }

/* =====================
   TESTIMONI
   ===================== */
.testimoni { background: var(--white); }
.testimoni-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.testi-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}
.testi-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem; right: 1.5rem;
    font-size: 4rem;
    color: var(--teal);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.testi-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.85rem;
    flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--dark); }
.testi-author span { font-size: 0.78rem; color: var(--gray); }

.media-section { text-align: center; border-top: 1px solid var(--border); padding-top: 3rem; }
.media-section h3 { font-size: 1rem; color: var(--gray); font-weight: 600; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 0.1em; }
.media-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
}
.media-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray);
    transition: var(--transition);
}
.media-logo:hover { border-color: var(--teal); color: var(--teal); }

/* =====================
   FAQ
   ===================== */
.faq { background: var(--bg-light); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--border);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    gap: 1rem;
    transition: var(--transition);
}
.faq-question:hover { color: var(--teal); }
.faq-question i { flex-shrink: 0; transition: transform 0.3s ease; color: var(--teal); }
.faq-question.active i { transform: rotate(180deg); }
.faq-question.active { color: var(--teal); }
.faq-answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    border-top: 1px solid var(--border);
}
.faq-answer p { padding-top: 1rem; }
.faq-answer a { color: var(--teal); font-weight: 600; }

/* =====================
   HUBUNGI KAMI
   ===================== */
.hubungi { background: var(--white); }
.hubungi-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    transition: var(--transition);
}
.contact-card:hover { background: var(--teal-pale); }
.contact-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--teal);
    color: var(--white);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.contact-card h4 { font-size: 0.85rem; font-weight: 700; color: var(--gray); margin-bottom: 0.3rem; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-card p, .contact-card a { font-size: 0.9rem; color: var(--dark-2); font-weight: 500; }
.contact-card a:hover { color: var(--teal); }
.social-links { padding: 1.25rem 0 0; }
.social-links h4 { font-size: 0.85rem; font-weight: 700; color: var(--gray); margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.social-icons { display: flex; gap: 0.75rem; }
.social-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    color: var(--white);
    transition: var(--transition);
}
.social-icon:hover { transform: translateY(-3px); }
.social-icon.fb { background: #1877f2; }
.social-icon.ig { background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7); }
.social-icon.tt { background: #000; }
.social-icon.yt { background: #ff0000; }

.contact-form {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    border: 1px solid var(--border);
}
.contact-form h3 { font-size: 1.2rem; font-weight: 800; color: var(--dark); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-2);
    margin-bottom: 0.4rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 400;
}
.checkbox-group input { width: auto; flex-shrink: 0; margin-top: 2px; }
.checkbox-group a { color: var(--teal); font-weight: 600; text-decoration: underline; }

.map-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark);
}
.map-section h3 i { color: var(--red); }
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border);
}

/* =====================
   FOOTER
   ===================== */
.footer { background: #0d1f1e; color: rgba(255,255,255,0.85); }
.footer-top { padding: 4rem 0 3rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
    gap: 3rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.footer-logo img { height: 45px; filter: contrast(0) brightness(2); }
.footer-company {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.03em;
}
.footer-company-sub {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 0.75rem; }
.footer-reg { font-size: 0.8rem; color: rgba(255,255,255,0.4) !important; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.footer-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.8rem;
    background: rgba(10,138,123,0.2);
    border: 1px solid rgba(10,138,123,0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    color: #7fffd4;
    font-weight: 600;
}
.footer-links h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.footer-links ul li { margin-bottom: 0.5rem; }
.footer-links a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-links a:hover { color: #7fffd4; padding-left: 4px; }
.footer-contact h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
}
.footer-contact-item i { color: var(--teal-light); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: #7fffd4; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}
.footer-policy-links { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.footer-policy-links a { color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-policy-links a:hover { color: #7fffd4; }
.footer-policy-links span { opacity: 0.3; }

/* =====================
   FLOATING WHATSAPP
   ===================== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 60px; height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37,211,102,0.6);
}
.wa-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.82rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    font-family: var(--font-body);
    font-weight: 500;
}
.wa-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--dark);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 6.5rem;
    right: 2rem;
    z-index: 998;
    width: 44px; height: 44px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--teal-dark); transform: translateY(-3px); }

/* =====================
   ANIMATIONS
   ===================== */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}
.animate-fade-up:nth-child(1) { animation-delay: 0.1s; }
.animate-fade-up:nth-child(2) { animation-delay: 0.2s; }
.animate-fade-up:nth-child(3) { animation-delay: 0.3s; }
.animate-fade-up:nth-child(4) { animation-delay: 0.4s; }
.animate-fade-up:nth-child(5) { animation-delay: 0.5s; }
.animate-fade-up:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =====================
   POLICY PAGES LAYOUT
   ===================== */
.policy-header {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
}
.policy-header h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 0.75rem; }
.policy-header p { font-size: 1rem; opacity: 0.85; }
.policy-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}
.policy-content h2 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--teal-dark);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--teal-pale);
}
.policy-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin: 1.5rem 0 0.75rem;
}
.policy-content p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.policy-content ul, .policy-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }
.policy-content li {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 0.4rem;
}
.policy-content .highlight-box {
    background: var(--teal-pale);
    border-left: 4px solid var(--teal);
    padding: 1.25rem 1.5rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 1.5rem 0;
}
.policy-content .highlight-box p { color: var(--teal-dark); margin: 0; font-weight: 500; }
.policy-content a { color: var(--teal); font-weight: 600; text-decoration: underline; }
.policy-updated {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.88rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.policy-updated i { color: var(--teal); }

/* =====================
   SUCCESS TOAST
   ===================== */
.toast {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    background: var(--teal);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast i { font-size: 1.2rem; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
    .tentang-grid { grid-template-columns: 1fr; }
    .tentang-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .masjid-benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .masjid-hero { grid-template-columns: 1fr; }
    .masjid-stats { flex-direction: row; flex-wrap: wrap; }
    .masjid-stat { flex: 1; min-width: 120px; }
}

@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .hamburger { display: flex; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .pakej-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
    .steps-grid { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); }
    .testimoni-grid { grid-template-columns: 1fr; }
    .hubungi-grid { grid-template-columns: 1fr; }
    .tentang-sidebar { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .vm-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.5rem; }
    .section { padding: 3.5rem 0; }
    .section-title { font-size: 1.75rem; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .logo-text { display: none; }
    .bnpl-notice { flex-direction: column; text-align: center; }
    .back-to-top { right: 1rem; bottom: 5.5rem; }
    .whatsapp-float { right: 1rem; bottom: 1.5rem; }
    .kempen-grid { grid-template-columns: 1fr; }
    .model-flow { flex-direction: column; align-items: center; }
    .model-arrow { transform: rotate(90deg); }
    .masjid-benefits-grid { grid-template-columns: 1fr 1fr; }
    .masjid-cta-box { flex-direction: column; text-align: center; }
    .masjid-cta-content { flex-direction: column; text-align: center; }
    .masjid-cta-actions { justify-content: center; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .stat-num { font-size: 1.75rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-badges { flex-direction: column; align-items: center; }
    .hero-price-preview { flex-direction: column; align-items: center; }
    .payment-icons { gap: 0.75rem; }
    .location-grid { grid-template-columns: 1fr; }
    .media-logos { flex-direction: column; align-items: center; }
    .hero-bnpl { font-size: 0.82rem; }
}

@media (max-width: 600px) {
    .kempen-cards-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
    /* Nav — tighter header */
    .header-inner { height: 62px; }
    .logo-img { height: 42px; }

    /* Hero */
    .hero { min-height: auto; padding: 100px 0 50px; }
    .hero-content { padding: 2rem 0 1.5rem; gap: 1.5rem; }
    .hero-title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
    .hero-sub { font-size: 0.95rem; }
    .hero-cta { gap: 0.75rem; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .hero-bnpl { flex-direction: row; flex-wrap: wrap; font-size: 0.8rem; text-align: left; }
    .hero-price-preview { gap: 0.5rem; }
    .price-chip { font-size: 0.8rem; padding: 0.4rem 0.85rem; }
    .trust-badges { justify-content: center; gap: 0.5rem; }
    .trust-badge { font-size: 0.72rem; padding: 0.3rem 0.7rem; }

    /* Sections */
    .section { padding: 48px 0; }
    .section-title { font-size: clamp(1.4rem, 6vw, 1.9rem); }
    .section-desc { font-size: 0.9rem; }
    .section-header { margin-bottom: 2rem; }

    /* Pakej cards */
    .pakej-grid { max-width: 440px; }
    .pakej-card { padding-bottom: 1.25rem; }

    /* Kempen comparison inline */
    .kempen-section [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }

    /* Steps */
    .steps-grid { gap: 1.5rem; }
    .step-card { padding: 1.5rem 1rem; }
    .step-card .step-icon { font-size: 1.75rem; }

    /* Testimoni */
    .testimoni-grid { gap: 1.25rem; }

    /* FAQ */
    .faq-q { font-size: 0.88rem; padding: 1rem 1.1rem; }

    /* Contact */
    .contact-card { padding: 1rem; }

    /* Footer */
    .footer-top { padding: 2.5rem 0 1.5rem; }
    .footer-grid { gap: 1.5rem; }
    .footer-policy-links { flex-direction: column; align-items: center; gap: 0.5rem; }

    /* Forms */
    .contact-form { padding: 1.5rem 1.25rem; }

    /* WhatsApp + Back to top */
    .whatsapp-float { width: 52px; height: 52px; font-size: 1.4rem; }
}

@media (max-width: 480px) {
    /* Header */
    .logo-text { display: none; }
    .logo-img { height: 38px; }
    .header-inner { height: 58px; }

    /* Hero */
    .hero-title { font-size: clamp(1.65rem, 8vw, 2.1rem); }
    .hero-sub { font-size: 0.88rem; }
    .hero-badges { gap: 0.4rem; }
    .hero-bnpl { font-size: 0.78rem; }

    /* Sections */
    .section { padding: 40px 0; }
    .container { padding: 0 1rem; }
    .section-title { font-size: clamp(1.3rem, 6vw, 1.7rem); }

    /* Pakej */
    .pakej-grid { max-width: 100%; }
    .price-main { font-size: 1.9rem; }

    /* Steps — 2 columns on small screens */
    .steps-grid { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .step-card { flex: 1; min-width: 140px; max-width: 160px; }
    .step-arrow { display: none; }

    /* Stats */
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .stat-num { font-size: 1.6rem; }
    .stat-label { font-size: 0.72rem; }

    /* Footer */
    .footer-bottom-inner { font-size: 0.75rem; }
    .footer-policy-links a { font-size: 0.75rem; }

    /* WhatsApp */
    .wa-tooltip { display: none; }
    .whatsapp-float { width: 48px; height: 48px; font-size: 1.3rem; right: 0.85rem; bottom: 1.25rem; }
    .back-to-top { right: 0.85rem; bottom: 4.5rem; width: 38px; height: 38px; font-size: 0.85rem; }
}

/* Additional mobile tweaks for index.html */
@media (max-width: 768px) {
    /* Kempen section inline-grid fallback */
    .kempen-cards-grid { grid-template-columns: 1fr !important; }

    /* BNPL notice stack */
    .bnpl-notice { flex-direction: column; text-align: left; gap: 0.75rem; padding: 1rem 1.25rem; }
    .bnpl-notice p { margin: 0; }

    /* Header tighter */
    .header-inner { height: 62px; }
    .logo-img { height: 40px; }

    /* Cinta Masjid section in index */
    .masjid-hero { padding: 1.5rem; gap: 1.5rem; }
    .masjid-intro h3 { font-size: 1rem; }

    /* FAQ question text */
    .faq-question { font-size: 0.88rem; padding: 1rem 1.1rem; }

    /* Contact grid */
    .hubungi-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    /* Ensure hero CTA buttons stack */
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100% !important; justify-content: center; }

    /* Price chips on hero */
    .hero-price-preview { flex-direction: column; align-items: center; }
    .price-chip { width: 100%; text-align: center; max-width: 280px; }

    /* Masjid benefits 1 column */
    .masjid-benefits-grid { grid-template-columns: 1fr; }

    /* Contact info items */
    .contact-info-item { flex-direction: column; gap: 0.5rem; }

    /* Pakej card padding */
    .pakej-card { padding-bottom: 1rem; }
}

