/* ============================================
   TOKE-CODE - Main Stylesheet
   Colors: Navy #0B1F5B | Gold #C8963E | White #FFF
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

:root {
    --navy: #0B1F5B;
    --navy-light: #162d7a;
    --navy-dark: #060f2e;
    --gold: #C8963E;
    --gold-light: #e8b45a;
    --gold-pale: #fdf3e3;
    --white: #ffffff;
    --bg: #f7f8fc;
    --bg2: #eef0f7;
    --text: #1a1a2e;
    --text-muted: #6b7280;
    --border: #e2e5f0;
    --shadow: 0 4px 24px rgba(11,31,91,0.08);
    --shadow-md: 0 8px 40px rgba(11,31,91,0.13);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 15px;
}

h1, h2, h3, h4, h5 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- NAVBAR ---- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

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

.nav-logo-text {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--navy);
    letter-spacing: -0.5px;
}

.nav-logo-text span { color: var(--gold); }

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

.nav-menu a {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
    transition: var(--transition);
}

.nav-menu a:hover, .nav-menu a.active {
    background: var(--gold-pale);
    color: var(--gold);
}

.nav-cta {
    background: var(--navy) !important;
    color: var(--white) !important;
    border-radius: 10px !important;
}

.nav-cta:hover {
    background: var(--navy-light) !important;
    color: var(--white) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border: none;
    background: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1a3a8f 100%);
    padding: 100px 5% 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200,150,62,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200,150,62,0.15);
    border: 1px solid rgba(200,150,62,0.3);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--white);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.15;
}

.hero-title span { color: var(--gold); }

.hero-desc {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,150,62,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.35);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 44px;
}

.stat-item { text-align: center; }

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 340px;
}

.hero-card-title {
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.service-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.85);
    margin: 4px;
    transition: var(--transition);
}

.service-chip:hover {
    background: rgba(200,150,62,0.2);
    border-color: rgba(200,150,62,0.4);
    color: var(--gold-light);
}

/* ---- SECTIONS ---- */
.section { padding: 80px 5%; }
.section-alt { background: var(--bg2); }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 48px; }

.section-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--navy);
    margin-bottom: 12px;
}

.section-desc {
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
    font-size: 1rem;
}

/* ---- PRODUCT CARDS ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200,150,62,0.25);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--bg2), var(--border));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.card-img img { width: 100%; height: 200px; object-fit: cover; }

.card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--navy);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
}

.card-body { padding: 20px; }

.card-cat {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-price {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: var(--navy);
    font-size: 1.05rem;
    margin-bottom: 14px;
}

.card-price small {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

.card-footer {
    display: flex;
    gap: 8px;
    padding: 0 20px 20px;
}

.btn-detail {
    flex: 1;
    background: var(--bg);
    color: var(--navy);
    border: 1.5px solid var(--border);
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-family: 'DM Sans', sans-serif;
}

.btn-detail:hover { background: var(--bg2); border-color: var(--navy); }

.btn-order {
    flex: 1;
    background: var(--navy);
    color: var(--white);
    border: 1.5px solid var(--navy);
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-family: 'DM Sans', sans-serif;
}

.btn-order:hover { background: var(--navy-light); }

/* ---- CATEGORY TABS ---- */
.cat-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.cat-tab {
    padding: 9px 18px;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    background: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
    font-family: 'DM Sans', sans-serif;
}

.cat-tab:hover, .cat-tab.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* ---- MODAL ---- */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(6,15,46,0.6);
    z-index: 2000;
    backdrop-filter: blur(4px);
    padding: 20px;
    overflow-y: auto;
}

.modal-overlay.active { display: flex; align-items: flex-start; justify-content: center; padding-top: 60px; }

.modal {
    background: var(--white);
    border-radius: 20px;
    width: 100%;
    max-width: 680px;
    overflow: hidden;
    animation: modalIn 0.3s cubic-bezier(0.4,0,0.2,1);
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover { background: var(--bg2); }

.modal-relative { position: relative; }

.modal-gallery {
    position: relative;
    height: 260px;
    background: var(--bg2);
    overflow: hidden;
}

.modal-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    background: linear-gradient(135deg, var(--bg2), #dde2f0);
}

.gallery-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-dot.active { background: var(--white); }

.modal-body { padding: 28px; }

.modal-cat {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.modal-title {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.modal-price {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 16px;
}

.modal-desc {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.modal-actions {
    display: flex;
    gap: 12px;
}

.modal-actions .btn { flex: 1; justify-content: center; }

/* ---- ORDER FORM ---- */
.order-form { max-width: 560px; margin: 0 auto; }

.form-group { margin-bottom: 20px; }

.form-label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-label span { color: #ef4444; }

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(11,31,91,0.08);
}

.form-control::placeholder { color: #9ca3af; }

textarea.form-control { resize: vertical; min-height: 100px; }

.order-product-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 32px;
}

.order-product-icon {
    width: 60px;
    height: 60px;
    background: var(--navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.order-product-info h4 { font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.order-product-info p { font-size: 0.85rem; color: var(--text-muted); }
.order-product-price {
    margin-left: auto;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: var(--gold);
    font-size: 1rem;
    text-align: right;
    flex-shrink: 0;
}

/* ---- TESTIMONIALS ---- */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}

.testi-card:hover { box-shadow: var(--shadow); }

.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; }

.testi-text {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

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

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Syne', sans-serif;
    flex-shrink: 0;
}

.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.testi-role { font-size: 0.78rem; color: var(--text-muted); }

/* ---- HOW TO ORDER ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.step {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: relative;
}

.step-num {
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 16px;
}

.step-icon { font-size: 2rem; margin-bottom: 12px; }
.step-title { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.step-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ---- CTA SECTION ---- */
.cta-section {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 80px 5%;
    text-align: center;
}

.cta-title { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; }
.cta-title span { color: var(--gold); }
.cta-desc { color: rgba(255,255,255,0.7); margin-bottom: 32px; font-size: 1.05rem; }

/* ---- FOOTER ---- */
footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 5% 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-brand-name span { color: var(--gold); }

.footer-desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }

.footer-socials { display: flex; gap: 10px; }

.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-btn:hover { background: var(--gold); }

.footer-col h4 {
    font-family: 'Syne', sans-serif;
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    padding: 4px 0;
    transition: var(--transition);
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    max-width: 1200px;
    margin: 24px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

/* ---- ADMIN ---- */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 240px;
    background: var(--navy-dark);
    padding: 24px 0;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-logo {
    padding: 0 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 16px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
}

.sidebar-logo span { color: var(--gold); }

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    font-weight: 500;
}

.sidebar-nav a:hover, .sidebar-nav a.active {
    background: rgba(255,255,255,0.07);
    color: var(--white);
    border-left: 3px solid var(--gold);
}

.admin-main { flex: 1; padding: 32px; background: var(--bg); overflow: auto; }

.admin-header { margin-bottom: 28px; }
.admin-title { font-size: 1.6rem; color: var(--navy); margin-bottom: 4px; }
.admin-subtitle { color: var(--text-muted); font-size: 0.9rem; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }

.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    border: 1px solid var(--border);
}

.stat-card-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.stat-card-num {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
}

.stat-card-label { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }

.table-wrap {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
}

.table-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-title { font-size: 1rem; font-weight: 700; color: var(--navy); }

table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px 20px; text-align: left; font-size: 0.88rem; }
th { background: var(--bg); color: var(--text-muted); font-weight: 600; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; }
td { border-top: 1px solid var(--border); color: var(--text); }
tr:hover td { background: var(--bg); }

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
}

.badge-pending { background: #fef3c7; color: #92400e; }
.badge-proses { background: #dbeafe; color: #1e40af; }
.badge-selesai { background: #d1fae5; color: #065f46; }
.badge-dibatalkan { background: #fee2e2; color: #991b1b; }

.form-page { max-width: 640px; }

.form-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

/* ---- ALERTS ---- */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid;
}

.alert-success { background: #d1fae5; color: #065f46; border-color: #a7f3d0; }
.alert-error { background: #fee2e2; color: #991b1b; border-color: #fecaca; }

/* ---- SUCCESS PAGE ---- */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.success-card {
    background: var(--white);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    max-width: 480px;
    width: 100%;
    box-shadow: var(--shadow-md);
}

.success-icon { font-size: 4rem; margin-bottom: 16px; }
.success-title { font-size: 1.8rem; color: var(--navy); margin-bottom: 8px; }
.success-desc { color: var(--text-muted); margin-bottom: 8px; }
.success-code {
    background: var(--bg);
    border: 1.5px dashed var(--border);
    border-radius: 10px;
    padding: 12px;
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 700;
    margin: 16px 0 28px;
    letter-spacing: 2px;
}

/* ---- PAGE HEADER ---- */
.page-header {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 60px 5%;
    text-align: center;
    color: var(--white);
}

.page-header-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 10px;
}

.page-header-desc { color: rgba(255,255,255,0.7); font-size: 1rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-2, .testi-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .nav-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 16px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
    .nav-menu.open { display: flex; }
    .hamburger { display: flex; }
    .footer-inner { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .admin-layout { flex-direction: column; }
    .admin-sidebar { width: 100%; height: auto; position: static; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .modal-actions { flex-direction: column; }
    .hero-stats { gap: 16px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
}

@media (max-width: 480px) {
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .section { padding: 60px 5%; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .order-product-card { flex-direction: column; text-align: center; }
    .order-product-price { margin-left: 0; }
}

/* ---- UTILITIES ---- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-muted); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.fw-700 { font-weight: 700; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-12 { gap: 12px; }
.w-100 { width: 100%; }

/* Scroll animation */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
