/* ============================================================
   SKBM Global Trade — BASE + DESIGN TOKENS (shared stylesheet)
   ------------------------------------------------------------
   Two-layer token system (Jaykrish-style architecture):
     Layer 1 — raw brand palette (--navy, --blue, --orange, ...)
     Layer 2 — semantic roles (--color-*, --text-*, --border-*,
               --surface-*, --radius-*, --shadow-*, --font-*)
   Change a token once in :root and the whole site follows.
   ============================================================ */

:root {
    /* Anchor jumps stop below the sticky navbar (~75px) with breathing room */
    scroll-behavior: smooth;
    scroll-padding-top: 90px;

    /* ─────────── Layer 1 · Brand palette ───────────
       Theme: SKBM LOGO NAVY/BLUE/ORANGE
       Logo colours (#01234A / #041936 / #0565A1) + warm orange accent
       #EA7406 (CTAs, eyebrows, dots, stat numbers, star ratings). */
    --navy:       #01234A;   /* logo primary navy (dark fills / badges)  */
    --navy-deep:  #041936;   /* logo darkest navy (footer / dark)        */
    --blue:       #0565A1;   /* logo blue (secondary accent / links)     */
    --sky-blue:   #0692D2;   /* light blue hover (accent on dark)        */
    --orange:     #EA7406;   /* warm orange — CTA + premium accent       */
    --bright-orange: #FA921A;/* orange gradient end                      */
    --orange-soft:#fcebdd;   /* light orange mist wash                   */
    --blue-soft:  #e8f0f8;   /* light blue mist wash                     */
    --ivory:      #f0f4f8;   /* near-white blue section bg               */
    --ivory-2:    #e9f0f7;   /* light blue section bg                    */
    --white:      #ffffff;
    --wa-green:       #25d366;  /* WhatsApp                       */
    --wa-green-dark:  #1ebe5d;  /* WhatsApp hover                 */

    /* Ink ramp (neutrals) */
    --ink-900: #1a2a3a;   /* headings / strong text */
    --ink-700: #3d4c5c;   /* body text              */
    --ink-600: #556474;   /* secondary text         */
    --ink-500: #667686;   /* muted text             */
    --ink-400: #8a97a5;   /* soft labels / meta     */
    --ink-300: #aab6c2;   /* faint / placeholders   */
    --ink-200: #eef2f6;   /* hairline               */
    --ink-100: #e0e6ec;   /* borders                */
    --ink-050: #f6f8fa;   /* extra light            */

    /* ─────────── Layer 2 · Semantic roles ─────────── */
    --color-primary:       var(--navy);        /* navy fills (dark bands)     */
    --color-primary-deep:  var(--navy-deep);   /* darkest (footer / dark)     */
    --color-primary-soft:  var(--blue-soft);   /* light blue mist wash        */
    --color-accent:        var(--blue);        /* blue accents / links        */
    --color-accent-dark:   #04497a;            /* blue accent hover           */
    --color-accent-bright: var(--sky-blue);    /* pale blue — accents ON DARK */
    --color-accent-soft:   var(--blue-soft);   /* chip / icon wash            */
    --color-gold:          var(--orange);      /* warm orange — premium accents */
    --color-cta:           var(--orange);      /* CTA buttons / nav act       */
    --color-cta-dark:      #d06800;            /* CTA hover (darker)          */
    --color-deep:          var(--navy-deep);
    --color-whatsapp:      var(--wa-green);
    --color-whatsapp-dark: var(--wa-green-dark);

    --surface-bg:     var(--white);
    --surface-card:   var(--white);
    --surface-ivory:  var(--ivory);
    --surface-cream:  var(--ivory-2);

    --text-strong: var(--ink-900);
    --text-body:   var(--ink-700);
    --text-second: var(--ink-600);
    --text-muted:  var(--ink-500);
    --text-soft:   var(--ink-400);
    --text-faint:  var(--ink-300);
    --text-on-dark: var(--white);

    --border-color:   var(--ink-100);
    --border-soft:    var(--ink-200);

    /* Warm-orange alpha tints (decorative — premium accent).
       Used on dark navy for eyebrows, dots, rings, dividers. */
    --gold-tint-040: rgba(234, 116, 6, 0.04);
    --gold-tint-050: rgba(234, 116, 6, 0.05);
    --gold-tint-080: rgba(234, 116, 6, 0.08);
    --gold-tint-120: rgba(234, 116, 6, 0.12);
    --gold-tint-150: rgba(234, 116, 6, 0.15);
    --gold-tint-200: rgba(234, 116, 6, 0.2);
    --gold-tint-250: rgba(234, 116, 6, 0.25);
    --gold-tint-280: rgba(234, 116, 6, 0.28);
    --gold-tint-400: rgba(234, 116, 6, 0.4);
    --gold-tint-500: rgba(234, 116, 6, 0.5);
    --gold-line:     rgba(234, 116, 6, 0.32);
    --primary-tint:  rgba(1, 35, 74, 0.05);
    --white-tint-040: rgba(255, 255, 255, 0.04);
    --white-tint-070: rgba(255, 255, 255, 0.07);
    --white-tint-080: rgba(255, 255, 255, 0.08);
    --white-tint-120: rgba(255, 255, 255, 0.12);
    --white-tint-150: rgba(255, 255, 255, 0.15);
    --white-tint-200: rgba(255, 255, 255, 0.2);
    --white-tint-400: rgba(255, 255, 255, 0.4);
    --white-tint-600: rgba(255, 255, 255, 0.6);
    --white-tint-750: rgba(255, 255, 255, 0.75);

    /* Shadows */
    --shadow-xs: 0 2px 8px rgba(1, 35, 74, 0.07);
    --shadow-sm: 0 4px 16px rgba(1, 35, 74, 0.09);
    --shadow-md: 0 8px 24px rgba(1, 35, 74, 0.14);
    --shadow-lg: 0 12px 32px rgba(1, 35, 74, 0.16);
    --shadow-card-hover: 0 10px 28px rgba(1, 35, 74, 0.14);
    --shadow-wa: 0 3px 12px rgba(37, 211, 102, 0.3);
    --shadow-wa-hover: 0 5px 18px rgba(37, 211, 102, 0.45);
    --shadow-btn-glow: 0 10px 24px rgba(234, 116, 6, 0.35); /* CTA hover glow (orange) */
    --shadow-strong: 0 8px 24px rgba(1, 35, 74, 0.32);
    --shine-gradient: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent); /* CTA shine sweep */

    /* Gradients & overlays */
    --gradient-footer: linear-gradient(135deg, var(--navy-deep) 0%, var(--blue) 160%);
    --gradient-footer-top: linear-gradient(90deg, var(--navy) 0%, var(--blue) 100%);
    --gradient-cta: linear-gradient(135deg, var(--orange), var(--bright-orange));
    --gradient-cta-hover: linear-gradient(135deg, #d06800, #e88510);
    --overlay-page: linear-gradient(90deg,
        rgba(1, 35, 74, 0.92) 0%, rgba(1, 35, 74, 0.55) 60%, rgba(1, 35, 74, 0.15) 100%);
    --overlay-slide: linear-gradient(90deg,
        rgba(1, 35, 74, 0.86) 0%, rgba(1, 35, 74, 0.5) 60%, rgba(1, 35, 74, 0.12) 100%);

    /* Radius scale */
    --radius-sm:  4px;
    --radius-md:  8px;
    --radius-lg:  12px;
    --radius-xl:  16px;
    --radius-pill: 999px;

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Motion */
    --transition-fast: 0.2s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.4s ease;

    /* Feedback (form success / error) */
    --success-bg:    #e8f5e9;
    --success-text:  #1b5e20;
    --success-border:#c8e6c9;
    --error-bg:      #fdecea;
    --error-text:    #b71c1c;
    --error-border:  #f5c6cb;
    --badge-pop:     #e8624a;
}

/* ── Continuous animations ── */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-bob {
    animation: float 3s ease-in-out infinite;
}

/* ───────────────────────── Base ───────────────────────── */

*:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--surface-bg);
    overflow-x: hidden;
}

a {
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-strong);
}

/* ───── FONTS ───── */
.font-playfair {
    font-family: var(--font-display);
}

.font-playfair em {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.25;
}

/* ── PAGE HERO BANNER ── */
.page-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--overlay-page);
}

.page-hero::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: var(--orange);
    filter: blur(180px);
    top: -140px;
    right: -120px;
    opacity: 0.18;
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-on-dark);
    padding: 90px 0;
}

.breadcrumb-item a {
    color: var(--color-accent-bright);
    text-decoration: none;
    font-size: 13px;
}

.breadcrumb-item.active {
    color: var(--text-on-dark);
    font-size: 13px;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--text-soft);
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.12;
}

.page-hero-content .page-title,
.page-hero-content h1 {
    color: var(--text-on-dark);
}

.page-title em {
    font-style: italic;
    color: var(--color-gold);
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.25;
}

.section-title em {
    font-style: italic;
    color: var(--color-accent);
}

.bg-ivory {
    background: var(--surface-ivory);
}

.bg-ivory2 {
    background: var(--surface-cream);
}

/* ── Service Cards (light, premium) — shared home + service ── */
.svc-card {
    position: relative;
    overflow: hidden;
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 26px 28px;
    height: 100%;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

/* soft orange glow — top right (very subtle on light) */
.svc-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 170px;
    height: 170px;
    background: radial-gradient(circle, rgba(234, 116, 6, 0.09), transparent 70%);
    pointer-events: none;
}

/* orange top-line reveal on hover */
.svc-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--bright-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.svc-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.svc-card:hover::after {
    transform: scaleX(1);
}

.svc-icon-wrap {
    position: relative;
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    background: var(--color-primary-soft);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
}

.svc-card:hover .svc-icon-wrap {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

.svc-icon-wrap i {
    font-size: 27px;
    color: var(--color-primary);
    transition: color var(--transition-base);
}

.svc-card:hover .svc-icon-wrap i {
    color: var(--text-on-dark);
}

.svc-num {
    position: absolute;
    top: -9px;
    right: -9px;
    background: var(--color-gold);
    color: var(--navy-deep);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(1, 35, 74, 0.25);
}

.svc-body {
    position: relative;
    z-index: 1;
}

.svc-title {
    position: relative;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 12px;
    margin-bottom: 12px;
    color: var(--text-strong);
}

/* small orange rule under the title — structural accent */
.svc-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    border-radius: 1px;
    background: var(--color-gold);
}

.svc-text {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 14px;
}

.svc-tags span {
    display: inline-block;
    background: var(--color-primary-soft);
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    margin: 2px 2px 0 0;
}

/* ── COLLECTION CARDS (shared: home collections + product page + related) ── */
.cat-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--surface-card);
    text-decoration: none;
    color: var(--text-strong);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                border-color 0.3s ease;
    display: block;
    height: 100%;
    position: relative;
}

/* Orange top-line reveal on hover */
.cat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--bright-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 10;
}

.cat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(1, 35, 74, 0.15);
    border-color: var(--color-primary);
    color: var(--text-strong);
}

.cat-card:hover::before {
    transform: scaleX(1);
}

.cat-img {
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--surface-cream) 0%, var(--surface-ivory) 100%);
    position: relative;
}

.cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.cat-card:hover .cat-img img {
    transform: scale(1.1);
}

.cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, var(--color-primary), var(--blue));
    color: var(--text-on-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(1, 35, 74, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cat-card:hover .cat-badge {
    transform: scale(1.05);
}

/* Gradient overlay on image */
.cat-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(1, 35, 74, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.cat-card:hover .cat-img::after {
    opacity: 1;
}

.cat-info {
    padding: 18px 20px 16px;
    background: var(--surface-card);
    transition: background 0.3s ease;
}

.cat-card:hover .cat-info {
    background: linear-gradient(180deg, var(--surface-card) 0%, var(--surface-ivory) 100%);
}

.cat-name {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.cat-card:hover .cat-name {
    color: var(--color-primary);
}

.cat-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cat-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-soft);
    padding-top: 12px;
    transition: border-color 0.3s ease;
}

.cat-card:hover .cat-foot {
    border-color: var(--color-primary);
}

.cat-view {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--color-primary);
    transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.cat-card:hover .cat-view {
    color: var(--color-primary-deep);
    letter-spacing: 0.5px;
}

.cat-arrow {
    width: 34px;
    height: 34px;
    background: var(--color-accent-soft);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease;
}

.cat-arrow i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.cat-card:hover .cat-arrow {
    background: var(--color-primary);
    color: var(--text-on-dark);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(1, 35, 74, 0.3);
}

.cat-card:hover .cat-arrow i {
    transform: translateX(2px);
}

/* ── CTA STRIP ── */
.cta-strip {
    background: var(--color-primary);
}

.cta-strip .text-white,
.cta-strip h3 {
    color: var(--text-on-dark);
}

/* ── CTA BUTTONS ── */
.btn-gold {
    position: relative;
    overflow: hidden;
    background: var(--gradient-cta);
    color: var(--text-on-dark);
    padding: 13px 30px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background var(--transition-base), color var(--transition-base),
        transform var(--transition-base), box-shadow var(--transition-base);
    border: none;
    cursor: pointer;
}

/* CTA shine sweep */
.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--shine-gradient);
    transform: translateX(-100%) skewX(-20deg);
    transition: transform 0.5s ease;
    pointer-events: none;
}

.btn-gold:hover::before,
.btn-gold:focus-visible::before {
    transform: translateX(230%) skewX(-20deg);
}

.btn-gold i {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-gold:hover i,
.btn-gold:focus-visible i {
    transform: translateX(5px);
}

.btn-gold:hover,
.btn-gold:focus-visible {
    background: var(--gradient-cta-hover);
    color: var(--text-on-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-glow);
}

.btn-outline-w {
    border: 1.5px solid var(--white-tint-600);
    color: var(--text-on-dark);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background var(--transition-base), color var(--transition-base);
}

.btn-outline-w:hover {
    background: var(--white-tint-120);
    color: var(--text-on-dark);
}

/* ── CONTACT FORM (shared: home + contact) ── */
.contact-form-wrap {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    box-shadow: var(--shadow-xs);
    height: 100%;
}

/* ── FORM: required marker ── */
.req {
    color: var(--error-text);
    font-weight: 700;
}

/* ── FORM: icon-prefixed fields (input-with-icon pattern) ── */
.field-icon {
    position: relative;
}

.field-icon > i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-soft);
    font-size: 15px;
    pointer-events: none;
    z-index: 1;
    transition: color var(--transition-fast);
}

.field-icon > .form-control {
    padding-left: 42px;
}

.field-icon:focus-within > i {
    color: var(--color-primary);
}

/* textarea icon sits at the top, aligned with the first line */
.field-icon.is-textarea > i {
    top: 17px;
    transform: none;
}

.field-icon.is-textarea textarea.form-control {
    padding-top: 12px;
    line-height: 1.6;
}

/* ── FORM: character counter ── */
.char-count {
    font-size: 12px;
    color: var(--text-soft);
    text-align: right;
    margin-top: 6px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-body);
    margin-bottom: 5px;
}

.form-control,
.form-select {
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 14px;
    padding: 11px 14px;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    background-color: var(--surface-bg);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-soft);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-faint);
}

.btn-submit {
    position: relative;
    overflow: hidden;
    background: var(--gradient-cta);
    color: var(--text-on-dark);
    padding: 13px 36px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background var(--transition-base), transform var(--transition-base),
        box-shadow var(--transition-base);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--shine-gradient);
    transform: translateX(-100%) skewX(-20deg);
    transition: transform 0.5s ease;
    pointer-events: none;
}

.btn-submit:hover::before,
.btn-submit:focus-visible::before {
    transform: translateX(230%) skewX(-20deg);
}

.btn-submit:hover,
.btn-submit:focus-visible {
    background: var(--gradient-cta-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-glow);
}

/* ── CONTACT SIDE PANEL (shared: home + contact) ── */
.contact-side {
    background: var(--color-primary);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    color: var(--text-on-dark);
    height: 100%;
}

.side-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.side-sub {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.side-icon {
    width: 44px;
    height: 44px;
    background: var(--white-tint-120);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.side-icon i {
    font-size: 18px;
    color: var(--color-gold);
}

.side-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 4px;
}

.side-value {
    font-size: 14px;
    color: var(--text-on-dark);
    line-height: 1.6;
}

.side-value a {
    color: var(--text-on-dark);
    text-decoration: none;
}

.side-value a:hover {
    text-decoration: underline;
    color: var(--color-accent-bright);
}

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 32px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: var(--white-tint-120);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-on-dark);
    font-size: 17px;
    text-decoration: none;
    transition: background var(--transition-base), color var(--transition-base);
}

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

.whatsapp-strip {
    background: var(--color-whatsapp);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    text-decoration: none;
    transition: background var(--transition-base);
}

.whatsapp-strip:hover {
    background: var(--color-whatsapp-dark);
}

.whatsapp-strip i {
    font-size: 26px;
    color: var(--text-on-dark);
}

.whatsapp-strip span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-on-dark);
    line-height: 1.4;
}

/* ── RESPONSE MSG (AJAX forms) ── */
.response-msg {
    font-size: 14px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
}

.response-msg.success {
    background: var(--success-bg);
    color: var(--success-text);
    border: 1px solid var(--success-border);
}

.response-msg.error {
    background: var(--error-bg);
    color: var(--error-text);
    border: 1px solid var(--error-border);
}

/* ── SCROLL TO TOP BUTTON ── */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--gradient-cta);
    color: var(--text-on-dark);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: var(--gradient-cta-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-btn-glow);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .float-bob,
    .story-img-badge,
    .marquee-inner {
        animation: none !important;
    }

    .btn-gold::before,
    .btn-submit::before {
        display: none;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}