/* ═══════════════════════════════════════════════════════════════
   Miliki Enterprises — Main Stylesheet
   Brand: Deep Red #8B1515 + Warm Gold #F2C200
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ──────────────────────────────────── */
:root {
    --red:          #8B1515;
    --red-dark:     #6E1010;
    --red-light:    #A61C1C;
    --gold:         #F2C200;
    --gold-dark:    #D4A900;
    --gold-light:   #FFF0A0;
    --charcoal:     #1A1A1A;
    --gray-700:     #374151;
    --gray-500:     #6B7280;
    --gray-300:     #D1D5DB;
    --gray-100:     #F3F4F6;
    --white:        #FFFFFF;
    --off-white:    #FFF9E6;
    --cream:        #FFF7D6;
    --gold-tint:    #FFF4CC;
    --gold-tint2:   #FFEAA0;
    --red-tint:     #F5F5F5;
    --red-tint2:    #F5F5F5;
    --gold-border:  #F2C200;

    --font-body:    'Inter', system-ui, -apple-system, sans-serif;
    --font-head:    'Poppins', 'Inter', system-ui, sans-serif;

    --radius-sm:    6px;
    --radius:       12px;
    --radius-lg:    20px;
    --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow:       0 4px 16px rgba(0,0,0,.10);
    --shadow-lg:    0 10px 40px rgba(0,0,0,.14);

    --transition:   0.22s ease;
    --container:    1200px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--gold-tint);
    line-height: 1.65;
    font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ─── Container ──────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .3px;
    border: 2px solid transparent;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
    white-space: nowrap;
    font-family: var(--font-body);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    box-shadow: 0 6px 20px rgba(139,21,21,.35);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-secondary:hover {
    background: var(--white);
    color: var(--red);
}

.btn-gold {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    box-shadow: 0 6px 20px rgba(242,194,0,.4);
}

.btn-outline-red {
    background: transparent;
    color: var(--red);
    border-color: var(--red);
}
.btn-outline-red:hover {
    background: var(--red);
    color: var(--white);
}

.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 17px 36px; font-size: 17px; }
.btn-full { width: 100%; }

/* ─── Section Utilities ──────────────────────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

.section-label {
    display: inline-block;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.18;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 580px;
    line-height: 1.7;
}

.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

.section-red {
    background: var(--red);
    color: var(--white);
}
.section-red .section-title { color: var(--white); }
.section-red .section-sub { color: rgba(255,255,255,.8); }

.section-gold {
    background: var(--gold);
    color: var(--charcoal);
}

/* ─── Header ─────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: var(--gold);
    border-bottom: 3px solid var(--red);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}

.nav-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.nav-backdrop.visible {
    display: block;
    opacity: 1;
}
.site-header.scrolled { box-shadow: var(--shadow); }

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

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

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

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

.nav-list a {
    display: block;
    padding: 8px 14px;
    font-weight: 600;
    font-size: 14px;
    color: var(--charcoal);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}
.nav-list a:hover { color: var(--red); background: rgba(255,255,255,.5); }

.nav-cta { margin-left: 8px; }

.lang-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-left: 10px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .5px;
    transition: background var(--transition), transform var(--transition);
    flex-shrink: 0;
}
.lang-switch:hover { background: var(--red-dark); transform: scale(1.08); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    border-radius: var(--radius-sm);
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
    background: var(--red);
    background-image: linear-gradient(135deg, var(--red-dark) 0%, var(--red-light) 60%, #C0392B 100%);
    color: var(--white);
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.25);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-badge::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 900;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 22px;
}

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

.hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,.88);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,.2);
    padding-top: 32px;
}

.hero-stat-value {
    font-family: var(--font-head);
    font-size: 30px;
    font-weight: 900;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,.75);
}

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

.hero-card-stack {
    position: relative;
    width: 380px;
    max-width: 100%;
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--gold);
}

.hero-card-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 16px;
    color: var(--charcoal);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-card-title span {
    background: var(--gold);
    color: var(--charcoal);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.hero-term {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}
.hero-term:last-child { border-bottom: none; }

.hero-term-icon {
    width: 38px;
    height: 38px;
    background: var(--gold-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.hero-term-text strong { display: block; font-weight: 700; font-size: 14px; color: var(--charcoal); }
.hero-term-text small  { font-size: 12px; color: var(--gray-500); }

/* ─── How It Works ───────────────────────────────────────────── */
.how-it-works { background: var(--gold-tint2); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(242,194,0,.3);
    border-top: 4px solid var(--red);
    background: var(--white);
    position: relative;
    transition: box-shadow var(--transition), transform var(--transition);
}
.step-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--red);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: var(--red);
    background: var(--gold-tint);
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.step-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.step-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.65;
}

/* ─── Products Section ───────────────────────────────────────── */
.products-section { background: var(--gold-tint); }

.category-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.filter-btn {
    padding: 8px 18px;
    border-radius: 25px;
    border: 2px solid var(--gold);
    background: var(--white);
    color: var(--gray-700);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
    border-color: var(--red);
    background: var(--red);
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(242,194,0,.25);
    border-bottom: 4px solid var(--red);
    transition: box-shadow var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.product-card.featured {
    background: linear-gradient(145deg, var(--gold) 0%, #FFD700 100%);
    border-color: var(--gold-dark);
}

.product-img-wrap {
    position: relative;
    background: var(--gray-100);
    aspect-ratio: 4/3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.product-img-placeholder {
    font-size: 64px;
    opacity: .35;
}

.featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--red);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

.product-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-brand {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.product-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    color: var(--charcoal);
    line-height: 1.35;
    margin-bottom: 6px;
}

.product-spec {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 14px;
    flex: 1;
}

.product-price {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    color: var(--red);
    margin-bottom: 4px;
}

.product-deposit {
    font-size: 12px;
    color: var(--gray-500);
    margin-bottom: 14px;
}
.product-deposit strong { color: var(--charcoal); font-weight: 700; }

.product-footer {
    padding: 0 18px 18px;
}

.product-card .btn { width: 100%; }

.no-products {
    grid-column: 1/-1;
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-500);
}

.load-more-wrap { text-align: center; margin-top: 40px; }

/* ─── Benefits / Why Miliki ──────────────────────────────────── */
.benefits-section { background: var(--red-tint); }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    padding: 32px 26px;
    border-radius: var(--radius);
    border: 1px solid rgba(139,21,21,.12);
    border-top: 4px solid var(--gold);
    background: var(--white);
    transition: box-shadow var(--transition), transform var(--transition);
}
.benefit-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }

.benefit-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    background: var(--red);
    border-radius: 50%;
}

.benefit-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.benefit-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.65;
}

/* ─── Partners ───────────────────────────────────────────────── */
.partners-section { background: var(--gold-tint2); padding: 50px 0; }

.partners-label {
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 32px;
}

.partners-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.partner-tile {
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    transition: box-shadow var(--transition), transform var(--transition);
}
.partner-tile:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.partner-tile img { max-height: 36px; max-width: 100px; object-fit: contain; }
.partner-name { font-weight: 700; font-size: 15px; color: var(--gray-700); }

/* ─── Testimonials ───────────────────────────────────────────── */
.testimonials-section { background: var(--gold-tint); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(242,194,0,.25);
    border-top: 4px solid var(--gold);
    position: relative;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-quote {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-quote::before { content: '"'; font-size: 48px; color: var(--gold); line-height: 0; vertical-align: -20px; margin-right: 4px; }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--gray-100);
    padding-top: 16px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.author-name { font-weight: 700; font-size: 14px; color: var(--charcoal); }
.author-location { font-size: 12px; color: var(--gray-500); }

/* ─── Application Form ───────────────────────────────────────── */
.apply-section { background: var(--red); }
.apply-section .section-title { color: var(--white); }
.apply-section .section-sub  { color: rgba(255,255,255,.8); }

.apply-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.apply-benefits { color: var(--white); }

.apply-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.apply-benefit-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.apply-benefit-title { font-weight: 700; font-size: 15px; color: var(--white); margin-bottom: 2px; }
.apply-benefit-desc  { font-size: 13px; color: rgba(255,255,255,.75); }

.apply-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--gold);
}

.form-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 22px;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.form-row { margin-bottom: 18px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-700);
    margin-bottom: 6px;
}

label .required { color: var(--red); margin-left: 2px; }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
input:focus, select:focus, textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(139,21,21,.12);
}
input.error, select.error, textarea.error {
    border-color: #DC2626;
}

.field-error {
    font-size: 12px;
    color: #DC2626;
    margin-top: 4px;
    display: none;
}
.field-error.visible { display: block; }

.form-note {
    font-size: 12px;
    color: var(--gray-500);
    text-align: center;
    margin-top: 14px;
    line-height: 1.6;
}

.form-success {
    display: none;
    text-align: center;
    padding: 20px;
}
.form-success.visible { display: block; }

.honeypot { display: none !important; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-section { background: var(--red-tint); }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
    border-bottom: 1px solid rgba(139,21,21,.12);
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 0 20px;
    margin-bottom: 10px;
    border-left: 4px solid var(--red);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--font-body);
    transition: color var(--transition);
}
.faq-question:hover { color: var(--red); }

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition), transform var(--transition);
}
.faq-icon svg { transition: transform var(--transition); }

.faq-item.open .faq-icon { background: var(--red); }
.faq-item.open .faq-icon svg { stroke: var(--white); transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.36s ease, padding 0.2s ease;
}
.faq-answer-inner {
    padding-bottom: 20px;
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.75;
}

/* ─── Contact / About ────────────────────────────────────────── */
.contact-section { background: var(--gold-tint); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-detail-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-detail-icon svg { stroke: var(--charcoal); }

.contact-label { font-size: 11px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.contact-value { font-size: 15px; font-weight: 600; color: var(--charcoal); }
.contact-value a { color: var(--red); }
.contact-value a:hover { text-decoration: underline; }

.whatsapp-cta {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 13px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    transition: background var(--transition), transform var(--transition);
}
.whatsapp-cta:hover { background: #1ebe59; transform: translateY(-1px); }

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,.75); padding-top: 60px; border-top: 4px solid var(--gold); }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo { height: 40px; width: auto; filter: brightness(0) invert(1); margin-bottom: 12px; }
.footer-tagline { font-style: italic; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.footer-about { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.6); max-width: 320px; margin-bottom: 20px; }

.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.1);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.75);
    transition: background var(--transition), color var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: var(--charcoal); }

.site-footer h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }

.footer-links ul li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }

.contact-list li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 13px; line-height: 1.5; }
.contact-list svg { flex-shrink: 0; margin-top: 2px; opacity: .7; stroke: var(--gold); }
.contact-list a { color: rgba(255,255,255,.65); }
.contact-list a:hover { color: var(--gold); }

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(242,194,0,.2);
}
.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.45); }
.footer-disclaimer { font-size: 11px; color: rgba(255,255,255,.3); }

/* ─── Thank You Page ─────────────────────────────────────────── */
.thankyou-page { min-height: calc(100vh - 140px); display: flex; align-items: center; background: var(--gold-tint); }
.thankyou-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px 48px;
    max-width: 580px;
    margin: 60px auto;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--gold);
}
.thankyou-icon { font-size: 64px; margin-bottom: 16px; }
.thankyou-ref {
    background: var(--gold-light);
    border: 2px dashed var(--gold-dark);
    border-radius: var(--radius-sm);
    padding: 16px 24px;
    margin: 24px 0;
    font-family: 'Courier New', monospace;
    font-size: 22px;
    font-weight: 900;
    color: var(--charcoal);
    letter-spacing: 2px;
}

/* ─── For Business Page ──────────────────────────────────────── */
.business-hero {
    background: var(--red);
    background-image: linear-gradient(135deg, var(--red-dark) 0%, var(--red-light) 60%, #C0392B 100%);
    color: var(--white);
    padding: 80px 0;
}
.business-hero h1 { font-family: var(--font-head); font-size: clamp(30px, 4.5vw, 52px); font-weight: 900; margin-bottom: 18px; }
.business-hero h1 span { color: var(--gold); }
.business-hero p { font-size: 17px; color: rgba(255,255,255,.8); max-width: 520px; line-height: 1.7; }

/* ─── Products Page ──────────────────────────────────────────── */
.products-page-hero {
    background: var(--red);
    color: var(--white);
    padding: 50px 0;
}
.products-page-hero h1 { font-family: var(--font-head); font-size: clamp(26px, 3.5vw, 40px); font-weight: 900; color: var(--white); }
.products-page-hero p { color: rgba(255,255,255,.8); margin-top: 8px; }

.products-page-content { padding: 50px 0; background: var(--gold-tint); }

.search-bar-wrap { margin-bottom: 30px; }
.search-bar-inner {
    display: flex;
    gap: 12px;
    align-items: center;
}
.search-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 15px;
    background: var(--white);
    outline: none;
    transition: border-color var(--transition);
}
.search-input:focus { border-color: var(--red); }

/* ─── Admin Global ───────────────────────────────────────────── */
.admin-body {
    font-family: var(--font-body);
    background: #F1F5F9;
    color: var(--charcoal);
    min-height: 100vh;
    margin: 0;
}

.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: var(--charcoal);
    color: var(--white);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.sidebar-brand {
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.sidebar-logo { height: 36px; filter: brightness(0) invert(1); }
.sidebar-tagline { font-size: 10px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

.sidebar-nav { padding: 16px 12px; flex: 1; }
.sidebar-section { margin-bottom: 24px; }
.sidebar-section-label { font-size: 10px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; padding: 0 8px; margin-bottom: 8px; }
.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,.7);
    font-size: 14px;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
    margin-bottom: 2px;
    text-decoration: none;
}
.sidebar-nav a:hover, .sidebar-nav a.active {
    background: rgba(255,255,255,.1);
    color: var(--white);
}
.sidebar-nav a.active { background: var(--red); }
.sidebar-nav a svg { opacity: .7; flex-shrink: 0; }
.sidebar-nav a.active svg { opacity: 1; }

.sidebar-logout {
    padding: 12px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.sidebar-logout a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,.5);
    font-size: 13px;
    transition: color var(--transition);
}
.sidebar-logout a:hover { color: #EF4444; }

.admin-main { display: flex; flex-direction: column; }

.admin-topbar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-300);
    padding: 0 28px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
}
.topbar-title { font-weight: 700; font-size: 17px; color: var(--charcoal); }
.topbar-user { font-size: 13px; color: var(--gray-500); }

.admin-content { padding: 28px; flex: 1; }

.admin-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    padding: 24px;
    margin-bottom: 24px;
}

.admin-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}
.admin-card-title { font-weight: 700; font-size: 16px; color: var(--charcoal); }

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

.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.stat-card-label { font-size: 12px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 8px; }
.stat-card-value { font-family: var(--font-head); font-size: 32px; font-weight: 800; color: var(--charcoal); }
.stat-card-sub { font-size: 12px; color: var(--gray-500); margin-top: 4px; }
.stat-card-icon { font-size: 28px; float: right; opacity: .4; }

.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th, .data-table td { padding: 12px 14px; text-align: left; }
.data-table th { background: var(--gray-100); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-500); font-weight: 700; white-space: nowrap; }
.data-table tbody tr { border-bottom: 1px solid var(--gray-100); transition: background var(--transition); }
.data-table tbody tr:hover { background: var(--gray-100); }
.data-table td img { width: 44px; height: 44px; object-fit: cover; border-radius: var(--radius-sm); }

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.badge-new      { background: #DBEAFE; color: #1D4ED8; }
.badge-contacted{ background: #FEF3C7; color: #B45309; }
.badge-approved { background: #D1FAE5; color: #065F46; }
.badge-rejected { background: #FEE2E2; color: #991B1B; }
.badge-active   { background: #D1FAE5; color: #065F46; }
.badge-inactive { background: #F3F4F6; color: #6B7280; }
.badge-featured { background: #FEF3C7; color: #B45309; }
.badge-consumer { background: #EDE9FE; color: #5B21B6; }
.badge-business { background: #CFFAFE; color: #0E7490; }

.table-actions { display: flex; gap: 8px; }
.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
}
.action-btn-edit   { background: #DBEAFE; color: #1D4ED8; }
.action-btn-edit:hover { background: #1D4ED8; color: var(--white); }
.action-btn-delete { background: #FEE2E2; color: #991B1B; }
.action-btn-delete:hover { background: #991B1B; color: var(--white); }
.action-btn-view   { background: #D1FAE5; color: #065F46; }
.action-btn-view:hover { background: #065F46; color: var(--white); }

.admin-form label { font-size: 13px; font-weight: 700; color: var(--gray-700); margin-bottom: 5px; display: block; }
.admin-form .form-group { margin-bottom: 18px; }
.admin-form .hint { font-size: 12px; color: var(--gray-500); margin-top: 4px; }

.img-preview-wrap { margin-top: 10px; }
.img-preview { max-width: 200px; max-height: 140px; object-fit: cover; border-radius: var(--radius-sm); border: 1px solid var(--gray-300); }

.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}
.alert-success { background: #D1FAE5; color: #065F46; border-left: 4px solid #10B981; }
.alert-error   { background: #FEE2E2; color: #991B1B; border-left: 4px solid #EF4444; }
.alert-info    { background: #DBEAFE; color: #1D4ED8; border-left: 4px solid #3B82F6; }

/* ─── Admin Login ────────────────────────────────────────────── */
.admin-login-page {
    min-height: 100vh;
    background: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
}

.login-card .logo-img { height: 50px; margin: 0 auto 32px; }
.login-card h1 { text-align: center; font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.login-card p { text-align: center; color: var(--gray-500); font-size: 14px; margin-bottom: 28px; }

/* ─── Pagination ─────────────────────────────────────────────── */
.pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 28px;
}

.page-btn {
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-300);
    background: var(--white);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: var(--gray-700);
    transition: all var(--transition);
    text-decoration: none;
}
.page-btn:hover, .page-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .steps-grid      { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid   { grid-template-columns: repeat(2, 1fr); }
    .hero-inner      { grid-template-columns: 1fr; }
    .hero-visual     { display: none; }
    .stat-cards      { grid-template-columns: repeat(2, 1fr); }
    .admin-layout    { grid-template-columns: 200px 1fr; }
    .footer-grid     { grid-template-columns: 1fr 1fr; gap: 32px; }
    .products-grid   { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
    .testimonials-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
}

@media (max-width: 768px) {
    .section  { padding: 50px 0; }
    .nav-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--gold);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px;
        box-shadow: var(--shadow);
        transform: translateY(-110%);
        transition: transform 0.3s ease;
        z-index: 1090;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        border-top: 2px solid var(--red);
    }
    .main-nav.open { transform: translateY(0); }
    body.nav-open { overflow: hidden; }

    .nav-list { flex-direction: column; gap: 0; }
    .nav-list a { padding: 12px 8px; font-size: 16px; }
    .nav-cta { margin-left: 0; margin-top: 12px; width: 100%; text-align: center; }
    .lang-switch { margin-left: 0; margin-top: 12px; align-self: center; }

    .hero { padding: 60px 0 50px; }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }

    .apply-inner { grid-template-columns: 1fr; gap: 32px; }
    .apply-form-wrap { padding: 24px; }
    .form-row-2 { grid-template-columns: 1fr; }

    .contact-grid  { grid-template-columns: 1fr; gap: 32px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom .container { flex-direction: column; gap: 6px; text-align: center; }

    .admin-layout { grid-template-columns: 1fr; }
    .admin-sidebar { display: none; }
    .stat-cards { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }

    .business-hero .container { flex-direction: column; }
    .business-hero { padding: 50px 0; }
    .business-hero h1 { font-size: 28px; }
    .business-hero p { font-size: 15px; }

    .products-page-hero { padding: 40px 0; }
    .products-page-hero h1 { font-size: 26px; }
    .products-page-content { padding: 30px 0; }

    .search-bar-inner { flex-direction: column; align-items: stretch; }
    .search-bar-inner .btn { width: 100%; }
    .search-input { width: 100%; }

    .category-filter { gap: 6px; }
    .filter-btn { padding: 6px 12px; font-size: 13px; }

    .thankyou-card { padding: 40px 24px; margin: 30px auto; }
    .thankyou-icon { font-size: 48px; }

    .section-header.centered { text-align: center; }
    .section-title { font-size: 24px; }
    .section-sub { font-size: 14px; }

    .hero-card { padding: 20px; }
    .step-card { padding: 28px 20px; }
    .benefit-card { padding: 24px 20px; }
    .testimonial-card { padding: 22px; }

    .pagination { flex-wrap: wrap; gap: 6px; }
    .page-btn { padding: 6px 10px; font-size: 12px; }
}

@media (max-width: 480px) {
    .header-inner { height: 54px; gap: 8px; }
    .logo-img { height: 34px; }
    .main-nav { top: 54px; max-height: calc(100vh - 54px); }
    .nav-backdrop { z-index: 1050; }
    .nav-toggle { padding: 4px; }
    .nav-toggle span { width: 20px; }

    .hero h1 { font-size: 26px; }
    .hero-sub { font-size: 14px; }
    .hero-badge { font-size: 10px; padding: 5px 10px; }
    .hero-stats { gap: 16px; }
    .hero-stat-value { font-size: 24px; }
    .hero-stat-label { font-size: 11px; }

    .products-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .stat-cards { grid-template-columns: 1fr; }
    .login-card { padding: 32px 24px; }

    .section { padding: 40px 0; }
    .section-title { font-size: 22px; }
    .container { padding: 0 16px; }

    .btn { padding: 11px 22px; font-size: 14px; }
    .btn-lg { padding: 13px 24px; font-size: 15px; }

    .footer-grid { gap: 24px; }
    .footer-bottom { padding: 16px 0; }
    .footer-bottom p { font-size: 11px; }

    .partner-tile { min-width: 100px; padding: 14px 10px; }
    .partner-tile img { max-height: 28px; }

    .thankyou-card { padding: 30px 18px; }
    .thankyou-ref { font-size: 18px; padding: 12px 16px; }

    .products-page-hero h1 { font-size: 22px; }
    .products-page-hero p { font-size: 13px; }

    .business-hero h1 { font-size: 24px; }
    .business-hero p { font-size: 14px; }
    .business-hero .btn { width: 100%; }
}

/* ─── Utilities ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-gold { color: var(--gold-dark); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mt-32 { margin-top: 32px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.w-full { width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.hidden { display: none !important; }
.spinner {
    width: 20px; height: 20px;
    border: 2px solid rgba(255,255,255,.4);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }
