/* ==========================================================================
   GLOBAL TRENDEX — UNIFIED DESIGN SYSTEM (loaded last, wins cascade)
   Normalizes the legacy app.css into one coherent, professional look.
   Palette honors the site-setting CSS variables in layouts/app.blade.php.
   ========================================================================== */

/* ---------- 1. TOKENS & BASE ---------- */
:root {
    --rd-radius: 10px;
    --rd-radius-sm: 7px;
    --rd-surface: #ffffff;
    --rd-surface-alt: #f6f8fb;
    --rd-border: #e4e9f0;
    --rd-border-strong: #cbd5e1;
    --rd-text: #3d4a5c;
    --rd-heading: #0d1b2a;
    --rd-muted: #77869b;
    --rd-shadow-sm: 0 1px 2px rgba(13, 27, 42, 0.05), 0 4px 16px rgba(13, 27, 42, 0.06);
    --rd-shadow: 0 2px 4px rgba(13, 27, 42, 0.04), 0 12px 32px rgba(13, 27, 42, 0.1);
    --rd-shadow-lg: 0 6px 16px rgba(13, 27, 42, 0.08), 0 24px 60px rgba(13, 27, 42, 0.16);
    --rd-grad-dark: linear-gradient(120deg, #0d1b2a 0%, #10263f 45%, #16395e 100%);
    --rd-gold: var(--gold, #c9a84c);
    --rd-gold-soft: rgba(201, 168, 76, 0.14);
    --rd-primary-soft: color-mix(in srgb, var(--primary, #123049) 8%, transparent);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--rd-text);
    background: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.1px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--rd-heading);
    line-height: 1.25;
    letter-spacing: -0.3px;
    font-weight: 700;
}

h1 { font-size: clamp(28px, 3.4vw, 40px); }
h2 { font-size: clamp(24px, 2.6vw, 32px); }
h3 { font-size: clamp(20px, 2vw, 24px); }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.8px; }

p { line-height: 1.75; margin-bottom: 16px; }
strong, b { font-weight: 600; }
small { font-size: 0.85em; }

a { transition: color 0.2s ease; }

img { max-width: 100%; }

.container { max-width: 1240px; }

/* ---------- 2. TYPOGRAPHY HELPERS ---------- */
.text-white, .text-white * { color: #fff !important; }
.text-dark { color: var(--rd-heading) !important; }

/* ---------- 3. BUTTONS ---------- */
.btn-gold, .btn-premium {
    border-radius: 8px !important;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 14px 34px;
    background: linear-gradient(120deg, #b8942e 0%, var(--gold, #c9a84c) 55%, #e6cf83 100%);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.28);
}
.btn-gold:hover, .btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 34px rgba(201, 168, 76, 0.42);
}
.btn-outline-gold, .btn-outline-primary {
    border-radius: 8px !important;
    font-weight: 600;
}
.btn-outline-gold { border-width: 2px; }
.btn { border-radius: 8px; font-weight: 600; }
.btn-lg { padding: 14px 34px; }
.btn-outline-secondary { border-radius: 8px; }

/* Theme buttons inside auth modals */
.theme_button {
    background: linear-gradient(120deg, #b8942e 0%, var(--gold, #c9a84c) 55%, #e6cf83 100%) !important;
    color: #0d1b2a !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    padding: 12px 26px !important;
    transition: all 0.25s ease !important;
}
.theme_button:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201, 168, 76, 0.4) !important; }
.theme_button.color1 { background: var(--primary) !important; color: #fff !important; }

/* ---------- 4. FORMS ---------- */
.form-control, input[type="text"], input[type="email"], input[type="tel"], input[type="password"],
input[type="search"], input[type="url"], input[type="number"], select, textarea {
    border-radius: 8px;
    border: 1px solid var(--rd-border);
    font-size: 14px;
    color: var(--rd-heading);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus, input:focus, select:focus, textarea:focus {
    border-color: var(--primary, #123049);
    box-shadow: 0 0 0 3px var(--rd-primary-soft, rgba(18, 48, 73, 0.08));
    outline: none;
}
.form-label { font-weight: 600; letter-spacing: 0.4px; }
.form-check-input:checked { background-color: var(--primary); border-color: var(--primary); }

/* ---------- 5. BREADCRUMBS ---------- */
.breadcrumb { --bs-breadcrumb-divider-color: rgba(255,255,255,0.4); }
.breadcrumb-item a { font-weight: 500; }

/* ---------- 6. PAGE HERO (inner pages) ---------- */
.page-hero {
    background: var(--rd-grad-dark);
    padding: 150px 0 96px !important;
    position: relative;
    text-align: center;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(560px 300px at 85% 20%, rgba(201, 168, 76, 0.16), transparent 70%),
        radial-gradient(480px 260px at 10% 90%, rgba(28, 143, 209, 0.14), transparent 70%);
    pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
    color: #fff;
    font-size: clamp(30px, 4vw, 44px) !important;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 14px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.page-hero p {
    color: rgba(255,255,255,0.82) !important;
    max-width: 640px;
    margin: 0 auto;
}
.page-hero .breadcrumb { justify-content: center; margin: 0; }
.page-hero .breadcrumb-item, .page-hero .breadcrumb-item a {
    color: rgba(255,255,255,0.72);
    font-size: 13px;
}
.page-hero .breadcrumb-item a:hover { color: var(--gold); }
.page-hero .breadcrumb-item.active { color: var(--gold); }
.page-hero img[alt=""], .page-hero img[role="presentation"] { display: none; }

/* Kicker label used on inner-page heroes */
.text-gold-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold, #c9a84c);
    margin-bottom: 12px;
}
.text-gold-label::before, .text-gold-label::after {
    content: '';
    width: 24px;
    height: 1px;
    background: currentColor;
    opacity: 0.6;
}

/* ---------- 7. SECTION SYSTEM ---------- */
.section-padding { padding: 96px 0; }
.section-padding-sm { padding: 56px 0; }
.section-padding-lg { padding: 120px 0; }

.section-title {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    color: var(--rd-heading);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

/* Premium section headers used on home + about */
.premium-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold, #c9a84c);
    margin-bottom: 14px;
}
.premium-title {
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 800;
    color: var(--rd-heading);
    letter-spacing: -0.6px;
    line-height: 1.18;
    margin-bottom: 16px;
}
.premium-title .highlight { color: var(--gold, #c9a84c); position: relative; white-space: nowrap; }
.premium-divider {
    width: 56px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--gold, #c9a84c), rgba(201, 168, 76, 0.15));
    margin: 18px 0 0;
}
.premium-divider-center { margin: 18px auto 0; }
.heading-line-gold {
    width: 46px;
    height: 3px;
    border-radius: 3px;
    background: var(--gold, #c9a84c);
    margin: 14px 0 20px;
}

/* Section backgrounds */
.section-premium[style*="background: #f8f8f8"], .section-premium[style*="background:#f8f8f8"],
section[style*="background: #f8f8f8"], section[style*="background:#f8f8f8"],
.bg-light, .bg-grey { background-color: var(--rd-surface-alt) !important; }

/* ---------- 8. IMAGE FRAMES ---------- */
.img-frame {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--rd-shadow-lg);
    border: 1px solid var(--rd-border);
    transform: translateZ(0);
}
.img-frame img { display: block; transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.img-frame:hover img { transform: scale(1.03); }

/* ---------- 9. CARDS ---------- */
.card-premium {
    background: #fff;
    border: 1px solid var(--rd-border);
    border-radius: var(--rd-radius);
    box-shadow: var(--rd-shadow-sm);
    padding: 22px 26px !important;
    transition: all 0.3s ease;
    height: 100%;
}
.card-premium:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 168, 76, 0.55);
    box-shadow: var(--rd-shadow);
}
.card-premium h6 { margin-bottom: 6px; }
.card-premium small { color: var(--rd-muted); line-height: 1.6; display: block; }

/* Feature items (services advantages list) */
.feature-item-gold {
    display: flex;
    gap: 16px;
    padding: 16px 18px !important;
    margin-bottom: 12px;
    background: #fff;
    border: 1px solid var(--rd-border);
    border-radius: var(--rd-radius);
    transition: all 0.25s ease;
}
.feature-item-gold:hover { border-color: rgba(201, 168, 76, 0.5); box-shadow: var(--rd-shadow-sm); transform: translateX(3px); }
.feature-item-gold .fig-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--rd-gold-soft);
    color: var(--gold, #c9a84c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}
.feature-item-gold .fig-text h6 { font-size: 15px; font-weight: 700; color: var(--rd-heading); margin-bottom: 3px; }
.feature-item-gold .fig-text p { font-size: 13px; color: var(--rd-muted); margin-bottom: 0; line-height: 1.6; }

/* ---------- 10. LEADERSHIP CARDS ---------- */
.leader-card {
    border-radius: 14px !important;
    border: 1px solid var(--rd-border) !important;
    box-shadow: var(--rd-shadow-sm);
    padding: 30px 32px !important;
}
.leader-card:hover { transform: translateY(-4px); box-shadow: var(--rd-shadow-lg); }
.leader-profile img { width: 80px; height: 80px; }

/* Team cards */
.team-card {
    border-radius: 14px !important;
    border: 1px solid var(--rd-border) !important;
    overflow: hidden;
    transition: all 0.3s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--rd-shadow-lg); }
.team-card img { border: 4px solid var(--rd-surface-alt); box-shadow: 0 6px 18px rgba(13, 27, 42, 0.12); }
.team-card .btn-outline-secondary { padding: 6px 14px; font-size: 13px; }
.team-card h5 { font-weight: 700 !important; }

/* Service cards (zxyservice-card) */
.zxyservice-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--rd-border);
    box-shadow: var(--rd-shadow-sm);
    height: 100%;
    background: #fff;
    transition: all 0.3s ease;
}
.zxyservice-card:hover { transform: translateY(-4px); box-shadow: var(--rd-shadow-lg); }
.zxyservice-img { height: 220px; }
.zxyservice-body { padding: 24px !important; }
.zxyservice-body h5 { font-size: 17px; margin-bottom: 8px !important; }

/* Generic service-card (service detail + page) */
.service-card { border-radius: 14px; border: 1px solid var(--rd-border); box-shadow: var(--rd-shadow-sm); transition: all 0.3s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--rd-shadow); }
.service-card h5 { font-weight: 700; }

/* Attribute + roadmap cards (services page) */
.attr-card, .roadmap-card {
    border-radius: 14px;
    border: 1px solid var(--rd-border);
    box-shadow: var(--rd-shadow-sm);
    padding: 28px 26px !important;
    transition: all 0.3s ease;
}
.attr-card:hover, .roadmap-card:hover { transform: translateY(-4px); box-shadow: var(--rd-shadow); }
.attr-icon { border-radius: 12px; }
.roadmap-badge { border-radius: 6px; }

/* Blog cards */
.blog-card {
    background: #fff;
    border: 1px solid var(--rd-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--rd-shadow-sm);
    transition: all 0.3s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--rd-shadow-lg); }
.blog-card .blog-img { aspect-ratio: 16 / 10; overflow: hidden; }
.blog-card .blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-card .blog-body { padding: 24px !important; }
.blog-card .blog-body h5 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.blog-card .blog-body p { font-size: 14px; color: var(--rd-muted); }
.blog-card .blog-date { color: var(--gold, #c9a84c); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.blog-card .read-more { color: var(--primary, #123049); font-weight: 700; font-size: 13px; }

/* ---------- 11. PRODUCT CARDS (category + related) ---------- */
.item-card {
    background: #fff;
    border: 1px solid var(--rd-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--rd-shadow-sm);
    transition: all 0.3s ease;
}
.item-card:hover { transform: translateY(-4px); box-shadow: var(--rd-shadow-lg); }
.item-card .item-img { aspect-ratio: 4 / 5; overflow: hidden; position: relative; }
.item-card .item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.item-card:hover .item-img img { transform: scale(1.06); }
.item-card .item-overlay { border-radius: 0 0 0 12px; }
.item-card .item-body { padding: 16px 18px !important; }
.item-card .item-body h5 { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.item-card .item-body .item-cat { font-size: 12px; color: var(--rd-muted); letter-spacing: 0.5px; text-transform: uppercase; }

/* zxy-product-card (related products) */
.zxy-product-card { border-radius: 12px; overflow: hidden; border: 1px solid var(--rd-border); background: #fff; box-shadow: var(--rd-shadow-sm); transition: all 0.3s ease; }
.zxy-product-card:hover { transform: translateY(-4px); box-shadow: var(--rd-shadow-lg); opacity: 1 !important; }
.zxy-product-img { aspect-ratio: 4 / 5; }
.zxy-product-info { padding: 14px 16px !important; }
.zxy-product-name { font-size: 14px !important; }

/* ---------- 12. PRODUCT INDEX GRID ---------- */
.region-content { padding-top: 0 !important; }
.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 26px;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none;
}
.product-card {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    background: #fff;
    border: 1px solid var(--rd-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--rd-shadow-sm);
    transition: all 0.3s ease;
    align-self: stretch;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--rd-shadow-lg); }
.product-card .product-image { aspect-ratio: 4 / 5; }
.product-image img { transition: transform 0.5s ease; }
.product-card:hover .product-image img { transform: scale(1.05); }
.add-to-wishlist { background: rgba(255,255,255,0.94) !important; box-shadow: 0 2px 10px rgba(13,27,42,0.12); }
.product-details { padding: 16px 18px !important; }
.product-details h5 { font-size: 15px; }

/* Filter button + modal */
.filter-modal-btn {
    border-radius: 8px !important;
    padding: 12px 26px !important;
    background: var(--rd-grad-dark) !important;
    box-shadow: var(--rd-shadow-sm);
}
.filter-modal-btn:hover { transform: translateY(-2px); box-shadow: var(--rd-shadow); }
.filter-modal { border-radius: 16px; padding: 34px !important; }
.filter-modal-header { border-bottom-color: var(--rd-border); }
.filter-modal-close:hover { transform: rotate(90deg); }
.fieldset-legend-toggle { border-bottom-color: var(--rd-border) !important; }
.js-form-item input[type="checkbox"] { accent-color: var(--gold, #c9a84c); }

/* Pager */
.pager__items a { border-radius: 8px; min-width: 36px; text-align: center; }
.pager__items .is-active a { background: var(--primary, #123049); border-color: var(--primary, #123049); }

/* ---------- 13. FAQ / ACCORDION ---------- */
.faq-wrap .accordion-item {
    border-radius: 12px !important;
    border: 1px solid var(--rd-border) !important;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: var(--rd-shadow-sm);
    transition: all 0.25s ease;
}
.faq-wrap .accordion-item:hover { border-color: rgba(201, 168, 76, 0.5); }
.faq-wrap .accordion-button { padding: 20px 26px !important; }
.faq-wrap .accordion-button:not(.collapsed) { background: rgba(201, 168, 76, 0.07) !important; }
.faq-wrap .accordion-body { padding: 4px 26px 22px !important; font-size: 14.5px; }

/* ---------- 14. HEADER ---------- */
#header-zxy.header-zxy {
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1005;
    border-bottom: 1px solid var(--rd-border);
    box-shadow: 0 1px 0 rgba(13, 27, 42, 0.02);
}
.header-zxy-inner { height: 64px !important; }
.header-zxy-logo-link img { height: 60px !important; width: auto; }
.header-zxy-menu-link {
    height: 64px !important;
    line-height: 64px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #22324a !important;
    padding: 0 11px !important;
    position: relative;
}
.header-zxy-menu-link::after {
    content: '';
    position: absolute;
    left: 11px;
    right: 11px;
    bottom: 12px;
    height: 2px;
    border-radius: 2px;
    background: var(--gold, #c9a84c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.28s ease;
}
.header-zxy-menu-link:hover { color: var(--gold, #c9a84c) !important; }
.header-zxy-menu-link:hover::after { transform: scaleX(1); }

.header-zxy-dropdown {
    border-radius: 12px;
    border: 1px solid var(--rd-border);
    box-shadow: var(--rd-shadow-lg);
    padding: 10px 0;
    top: calc(100% - 4px);
}
.header-zxy-dropdown a { border-radius: 8px; margin: 0 8px; font-size: 13.5px; }
.header-zxy-dropdown a:hover { background: var(--rd-surface-alt) !important; }

.header-zxy-megamenu {
    border-radius: 0 0 16px 16px;
    border-bottom: 3px solid var(--gold, #c9a84c);
    box-shadow: var(--rd-shadow-lg);
    padding: 30px 44px !important;
}
.megamenu-sublist a { font-size: 13.5px; }
.megamenu-col-image img { border-radius: 10px; }

/* Header actions */
.header-zxy-actions { gap: 12px; }
.header-zxy-search-btn, .header-zxy-linkedin, .header-zxy-whatsapp, .header-zxy-wishlist {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: #42536b !important;
    background: var(--rd-surface-alt);
    transition: all 0.25s ease;
    padding: 0 !important;
}
.header-zxy-search-btn:hover, .header-zxy-linkedin:hover, .header-zxy-whatsapp:hover { 
    background: var(--rd-gold-soft); color: var(--gold, #c9a84c) !important; transform: translateY(-1px);
}
.header-zxy-wishlist { background: #fdf0f0; color: #d95468 !important; }
.header-zxy-contact-btn {
    border-radius: 8px !important;
    padding: 11px 24px !important;
    font-size: 12.5px !important;
    font-weight: 700;
    letter-spacing: 0.8px;
}
.wishlist-count-badge { top: 2px; right: 2px; background: #d95468 !important; }

/* Mobile toggle */
.header-zxy-mobile-toggle { border-radius: 8px; padding: 10px !important; background: var(--rd-surface-alt); }
.header-zxy-mobile-toggle span { width: 20px; }

/* Search dropdown */
.header-zxy-search-dropdown { background: #fff; padding: 18px 24px 24px; border-bottom: 1px solid var(--rd-border); box-shadow: var(--rd-shadow); }
.header-zxy-search-input { font-size: 18px !important; }

/* ---------- 15. TOPBAR ---------- */
.topline {
    background: linear-gradient(120deg, #0a1624 0%, #10263f 100%) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 13px !important;
    padding: 8px 0 !important;
}
.topline .site-meta { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topline .site-meta > div { display: flex; align-items: center; gap: 22px; }
.topline .svg-icon svg { width: 14px !important; height: 14px !important; }
.topline a, .topline span { color: rgba(255,255,255,0.82) !important; font-size: 13.5px !important; font-weight: 500; }
.topline a:hover { color: var(--gold, #c9a84c) !important; }
.topline .icon-inline { display: inline-flex; align-items: center; gap: 7px; }
.topline .svg-icon { opacity: 0.75; }

/* ---------- 16. FOOTER ---------- */
#footer {
    background: linear-gradient(150deg, #0a1624 0%, #0f2136 55%, #132b49 100%) !important;
    color: rgba(255,255,255,0.62);
}
#footer .footer-wave svg { height: 48px; }
#footer .footer-main { padding: 64px 0 36px; }
#footer .footer-heading { color: rgba(255,255,255,0.9) !important; font-size: 14px; font-weight: 600; letter-spacing: 0.5px; }
#footer .footer-brand-text, #footer .footer-links a, #footer .footer-contact-item,
#footer .footer-contact-item a, #footer .footer-copyright, #footer .footer-copyright a,
#footer .footer-bottom-links a { color: rgba(255,255,255,0.52) !important; font-size: 14px; }
#footer .footer-heading { color: rgba(255,255,255,0.92) !important; }
#footer .footer-links a:hover, #footer .footer-contact-item a:hover, #footer .footer-copyright a:hover,
#footer .footer-bottom-links a:hover { color: var(--gold, #c9a84c) !important; }
#footer .footer-social-icon { border-color: rgba(255,255,255,0.14); background: rgba(255,255,255,0.05); }
#footer .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); }
#footer .footer-back-top { background: var(--gold, #c9a84c); color: #0d1b2a; }
#footer .footer-whatsapp-float { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }

/* ---------- 17. HOME — HERO ---------- */
.hero-wrap { position: relative; }
.hero-overlay { display: flex; align-items: center; }
.hero-overlay-inner { padding: 24px 0; }
.hero-kicker {
    border-radius: 40px;
    padding: 8px 18px;
    font-size: 12.5px;
    letter-spacing: 2.5px;
    background: rgba(13, 27, 42, 0.35);
    border-color: rgba(201, 168, 76, 0.45);
    color: var(--gold, #c9a84c);
}
.hero-title { font-size: clamp(34px, 4.6vw, 54px); }
.btn-hero-gold, .btn-hero-outline { border-radius: 40px; }
.btn-hero-gold { box-shadow: 0 12px 34px rgba(201, 168, 76, 0.4); }

/* Stats band */
.stats-band { padding: 58px 0; }
.stats-band .stat-num { font-size: clamp(40px, 4vw, 54px); }
.stats-band .stat-item p { letter-spacing: 1.4px; font-size: 13px; }

/* ---------- 18. HOME — GALLERY / CAROUSELS ---------- */
.product-gallery-wrap .swiper-slide img { border-radius: 8px; width: 150px; height: 150px; }
.client-carousel-wrap .swiper-slide img { filter: grayscale(100%); opacity: 0.55; }
.accred-slider-wrap .swiper-slide img, .client-carousel-wrap .swiper-slide img { filter: grayscale(100%); opacity: 0.6; transition: all 0.3s ease; }
.accred-slider-wrap .swiper-slide img:hover, .client-carousel-wrap .swiper-slide img:hover { filter: grayscale(0%); opacity: 1; }

/* Discover category cards */
.discover-cat-img { border-radius: 12px; box-shadow: var(--rd-shadow-sm); }
.discover-cat-name { font-size: 14px; letter-spacing: 0.8px; }
.discover-cat-name::after {
    content: '→';
    margin-left: 8px;
    color: var(--gold, #c9a84c);
    display: inline-block;
    transition: transform 0.25s ease;
}
.discover-cat-card:hover .discover-cat-name::after { transform: translateX(4px); }

/* CTA band */
.cta-band { padding: 96px 0 !important; }
.cta-band h2 { font-size: clamp(28px, 3.4vw, 40px) !important; }
.btn-cta-call, .btn-cta-wa { border-radius: 40px; }

/* ---------- 19. CONTACT PAGE ---------- */
#content .container .row .col-lg-7 form .form-label, .form-label { color: var(--rd-heading); }
iframe[title="Office Location"] { filter: saturate(0.92) contrast(1.02); }
.alert { border-radius: 10px; }

/* ---------- 20. MISC POLISH ---------- */
#search_dropdown, #login_dropdown { z-index: 2000; }
.accreditation-strip { background: linear-gradient(120deg, #0a1624, #123049); }
.accred-badge { border-radius: 6px; border-color: rgba(255,255,255,0.18); }

/* Reveal animation (progressive, only when JS is available) */
.js .reveal-on-scroll { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js .reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }

/* ---------- 19b. PRODUCT DETAIL ---------- */
.product-single { padding-top: 90px; }
.product-container { gap: 48px; }
.product-image { border-radius: 16px; background: #f3f6fa; box-shadow: var(--rd-shadow-sm); }
.product-main-img { border-radius: 16px; }
.product-content { max-width: 1240px; margin: 0 auto; }
.product-info h1 { font-size: 2rem !important; }
.btn--primary, .btn--large { border-radius: 8px !important; }
.product-images img { border-radius: 8px; }
.zxy-product-card .zxy-product-img { background: #f3f6fa; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 991.98px) {
    .page-hero { padding: 110px 0 68px !important; }
    .section-padding { padding: 72px 0; }
    .topline .site-meta > div:nth-child(2) { display: none; }
    .header-zxy-inner { height: 60px !important; }
    .header-zxy-logo-link img { height: 54px !important; }
    .header-zxy-nav {
        top: 64px;
        z-index: 1004;
        box-shadow: 0 30px 60px rgba(13, 27, 42, 0.18);
        padding: 20px 24px !important;
    }
    .header-zxy-megamenu { padding: 14px 0 14px 14px !important; }
    .product-list { grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 18px; }
}

@media (max-width: 767.98px) {
    .page-hero { padding: 92px 0 54px !important; }
    .page-hero h1 { font-size: 28px !important; }
    .section-padding { padding: 60px 0; }
    .hero-overlay { align-items: flex-end; }
    .hero-overlay-inner { border-radius: 16px 16px 0 0; padding: 28px 18px; }
    .btn-hero-gold, .btn-hero-outline { width: 100%; text-align: center; margin: 0 0 10px !important; }
    .card-premium { padding: 18px 20px !important; }
    .product-list { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
    .product-details h5 { font-size: 13.5px; }
    .filter-modal-btn { width: 100%; justify-content: center; }
    .form-checkboxes { grid-template-columns: 1fr; }
    .cta-band { padding: 64px 0 !important; }
    .leader-card { padding: 24px !important; }
}

@media (max-width: 575.98px) {
    .page-hero { padding: 84px 0 46px !important; }
    .page-hero h1 { font-size: 24px !important; }
    .topline .site-meta { justify-content: center; }
    .topline .site-meta > div:first-child span:nth-child(n+2) { display: none; }
    .topline .site-meta > div { gap: 10px; }
    .header-zxy-actions { gap: 6px; }
    .header-zxy-search-btn, .header-zxy-linkedin, .header-zxy-whatsapp {
        width: 34px; height: 34px;
    }
    .header-zxy-actions .header-zxy-linkedin,
    .header-zxy-actions .header-zxy-whatsapp,
    .header-zxy-actions .header-zxy-wishlist { display: none; }
    .header-zxy-actions .header-zxy-contact-btn { padding: 9px 16px !important; font-size: 11.5px !important; }
    .stats-band { padding: 42px 0; }
    .stats-band .stat-num { font-size: 34px; }
    .item-card .item-body { padding: 12px 14px !important; }
    .zxy-product-info { padding: 10px 12px !important; }
    .section-title { font-size: 24px; }
    .premium-title { font-size: 24px; }
}