/* ============================================================
   Pure Fox — BASE + DESIGN TOKENS (shared stylesheet)
   ------------------------------------------------------------
   Two-layer token system:
     Layer 1 — raw brand palette (--navy, --green, --gold, ...)
     Layer 2 — semantic roles (--color-*, --text-*, --border-*,
               --surface-*, --radius-*, --shadow-*, --font-*)
   Change a token once in :root and the whole site follows.
   NOTE: Palette = "Superfood green + gold" draft (docs GRAPHICS theme B).
   Client ka logo/colors aane ke baad sirf :root tokens change karna.
   ============================================================ */

:root { 
    /* Anchor jumps stop below the sticky navbar (~75px) with breathing room */ 
    scroll-behavior: smooth; 
    scroll-padding-top: 90px; 
 
    /* ─────────── Layer 1 · Brand palette ─────────── 
       Theme: Pure Fox SUPERFOOD GREEN + GOLD (draft — docs GRAPHICS theme B) 
       Logo greens + derived tints. 
       Warm gold is the PREMIUM decorative accent — greens stay 
       for CTAs / fills / dark bands. Colors finalized after client logo. */ 
    --navy:       #0D3419;   /* logo primary green (CTA / fills)     */ 
    --navy-deep:  #06250F;   /* logo darkest green (footer / dark)   */ 
    --green:      #386918;   /* logo leaf green (secondary accent)   */ 
    --green-deep: #0D3419;   /* logo primary green (main fills)      */ 
    --green-dark: #092810;   /* primary hover (deepens)              */ 
    --green-soft: #EAF3E4;   /* light green mist wash                */ 
    --orange:     #E87414;   /* logo fox orange                      */ 
    --gold:       #E69F45;   /* warm gold — premium decorative accent */ 
    --gold-soft:  #F7EBD3;   /* legacy warm cream (unused)           */ 
    --deep-green: #06250F;   /* deepest green (dark sections)        */ 
    --teal-green: #386918;   /* legacy name (unused)                 */ 
    --ivory:      #F5F8F1;   /* near-white green mist section bg     */ 
    --ivory-2:    #EAF3E4;   /* light green mist section bg          */ 
    --white:      #FFFFFF; 
 
    --wa-green:       #25D366;  /* WhatsApp                       */ 
    --wa-green-dark:  #1EBE5D;  /* WhatsApp hover                 */ 
 
    /* Ink ramp (neutrals) */ 
    --ink-900: #1A1A1A;   /* headings / strong text */ 
    --ink-700: #444444;   /* body text              */ 
    --ink-600: #555555;   /* secondary text         */ 
    --ink-500: #666666;   /* muted text             */ 
    --ink-400: #888888;   /* soft labels / meta     */ 
    --ink-300: #AAAAAA;   /* faint / placeholders   */ 
    --ink-200: #F0F0F0;   /* hairline               */ 
    --ink-100: #E8E8E8;   /* borders                */ 
 
    /* ─────────── Layer 2 · Semantic roles ─────────── */ 
    --color-primary:       var(--green-deep);   /* main olive fills       */ 
    --color-primary-deep:  var(--navy-deep);    /* darkest (footer/dark)  */ 
    --color-primary-soft:  var(--green-soft);   /* light mist wash        */ 
    --color-accent:        var(--green);        /* leaf green accents     */ 
    --color-accent-dark:   #2A5011;             /* green accent hover     */ 
    --color-accent-bright: #AFCB8F;             /* pale sage — accents ON DARK */ 
    --color-accent-soft:   var(--green-soft);   /* chip / icon wash       */ 
    --color-gold:          var(--gold);         /* warm gold — premium accents */ 
    --color-blue:          var(--navy);         /* legacy name → primary  */ 
    --color-blue-soft:     #8DBA75;             /* legacy (unused)        */ 
    --color-cta:           var(--navy);         /* CTA buttons / nav act  */ 
    --color-cta-dark:      #06250F;             /* CTA hover (darker)     */ 
    --color-deep:          var(--deep-green); 
    --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-gold alpha tints (decorative — premium accent). 
       Used on dark greens for eyebrows, dots, rings, dividers. */ 
    --gold-tint-040: rgba(230, 159, 69, 0.04); 
    --gold-tint-050: rgba(230, 159, 69, 0.05); 
    --gold-tint-080: rgba(230, 159, 69, 0.08); 
    --gold-tint-120: rgba(230, 159, 69, 0.12); 
    --gold-tint-200: rgba(230, 159, 69, 0.2); 
    --gold-tint-150: rgba(230, 159, 69, 0.15); 
    --gold-tint-250: rgba(230, 159, 69, 0.25); 
    --gold-tint-280: rgba(230, 159, 69, 0.28); 
    --gold-tint-400: rgba(230, 159, 69, 0.4); 
    --gold-tint-500: rgba(230, 159, 69, 0.5); 
    --gold-line:     rgba(230, 159, 69, 0.32); 
    --primary-tint:  rgba(13, 52, 25, 0.05); 
    --ink-050:       #F6F8F2; 
    --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(6, 37, 15, 0.07); 
    --shadow-sm: 0 4px 16px rgba(6, 37, 15, 0.09); 
    --shadow-md: 0 8px 24px rgba(42, 80, 17, 0.14); 
    --shadow-lg: 0 12px 32px rgba(42, 80, 17, 0.16); 
    --shadow-card-hover: 0 10px 28px rgba(42, 80, 17, 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(56, 105, 24, 0.35); /* CTA hover glow */ 
    --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(--green-deep) 160%); 
    --gradient-footer-top: linear-gradient(90deg, var(--navy) 0%, var(--green-dark) 100%); 
    --overlay-page: linear-gradient(90deg, 
        rgba(6, 37, 15, 0.92) 0%, rgba(6, 37, 15, 0.55) 60%, rgba(6, 37, 15, 0.15) 100%); 
    --overlay-slide: linear-gradient(90deg, 
        rgba(6, 37, 15, 0.86) 0%, rgba(6, 37, 15, 0.5) 60%, rgba(6, 37, 15, 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 (timings per docs/design-pattern/animations.md) */ 
    --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; 
    --shadow-strong: 0 8px 24px rgba(42, 80, 17, 0.32); 
 
    /* Legacy aliases — existing inline var(--teal)/var(--gold) etc. 
       in page markup keeps working; prefer semantic tokens above. */ 
    --teal: var(--green-deep); 
    --teal-dark: var(--green-deep); 
    --teal-light: var(--green-soft); 
    --gold-light: var(--gold-soft); 
    --ivory-3: var(--ivory); 
}
/* ── Continuous animations (docs/design-pattern/animations.md) ── */
@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: 380px;
    display: flex;
    align-items: center;
    background-image: url('../images/banner/banner-1.webp');
    background-size: cover;
    background-position: center;
}

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

.page-hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-on-dark);
    padding: 80px 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 titles sit on dark hero imagery — force light text there
   (the generic h1 rule would otherwise make them near-black). */
.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 (icon-based, no images) — shared home + service ── */
.svc-card {
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--color-accent);
    border-radius: var(--radius-lg);
    background: var(--surface-card);
    padding: 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
    height: 100%;
}

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

.svc-icon-wrap {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--color-accent-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background var(--transition-base);
}

.svc-card:hover .svc-icon-wrap {
    background: var(--color-primary-soft);
}

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

.svc-num {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-primary);
    color: var(--text-on-dark);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    border: 2px solid var(--surface-card);
}

.svc-body {
    flex: 1;
}

.svc-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-strong);
}

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

.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 + pro-details related) ── */
.cat-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--surface-card);
    text-decoration: none;
    color: var(--text-strong);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    display: block;
    height: 100%;
    position: relative;
}

.cat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
    color: var(--text-strong);
}

/* Image — compact height, cropped top/bottom so the card stays tight */
.cat-img {
    height: 210px;
    overflow: hidden;
    background: var(--surface-cream);
    position: relative;
}

.cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

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

/* Grade badge on image (product-badge pattern) */
.cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--color-primary);
    color: var(--text-on-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

/* Bottom gradient that deepens on hover (Image Overlay on Hover) */
.cat-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(38, 61, 19, 0.35) 100%);
    opacity: 0.55;
    transition: opacity var(--transition-base);
    pointer-events: none;
    z-index: 1;
}

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

/* Info strip */
.cat-info {
    padding: 18px 20px 16px;
    background: var(--surface-card);
}

.cat-name {
    font-family: var(--font-display);
    font-size: 16.5px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 3px;
}

/* Short description — live from DB, 2-line clamp */
.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;
}

/* Footer: View Details + arrow (arrow slides on hover) */
.cat-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-soft);
    padding-top: 12px;
}

.cat-view {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--color-primary);
    transition: color var(--transition-fast);
}

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

.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 var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.cat-arrow i {
    font-size: 13px;
}

.cat-card:hover .cat-arrow {
    background: var(--color-primary);
    color: var(--text-on-dark);
    transform: translateX(4px);
}

/* ── PRODUCT CARDS (shared: home + product + pro-details) ── */
.product-card {
    background: var(--surface-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
    cursor: pointer;
    height: 100%;
}

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

.product-img {
    height: 210px;
    overflow: hidden;
    position: relative;
    background: var(--surface-cream);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-img img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-primary);
    color: var(--text-on-dark);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.product-info {
    padding: 16px 18px;
}

.product-type {
    font-size: 11px;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}

.product-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.35;
}

.product-price {
    font-size: 19px;
    font-weight: 700;
    color: var(--color-primary);
}

.product-price small {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-soft);
}

.btn-view {
    background: var(--color-accent-soft);
    color: var(--color-primary);
    border: none;
    padding: 7px 16px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-base), color var(--transition-base);
    text-decoration: none;
    display: inline-block;
}

.btn-view:hover {
    background: var(--color-accent);
    color: var(--text-on-dark);
}

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

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

.btn-gold {
    position: relative;
    overflow: hidden;
    background: var(--color-primary);
    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 (animations.md: CTA Button Shine Effect)
   Uses transform (GPU-accelerated) per the doc's performance rules. */
.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);
}

/* Arrow slide on CTA hover (animations.md: Button Arrow Slide) */
.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(--color-primary-deep);
    color: var(--text-on-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn-glow);
}

/* Buttons placed ON dark green surfaces flip to a light sage fill so
   the CTA stays high-contrast against the deep green band/image. */
.page-hero .btn-gold,
.slide-content .btn-gold,
.cta-strip .btn-gold,
.footer-nl-strip .btn-gold {
    background: var(--color-accent-bright);
    color: var(--color-primary-deep);
    border: 1.5px solid var(--white-tint-400);
}

.page-hero .btn-gold:hover,
.page-hero .btn-gold:focus-visible,
.slide-content .btn-gold:hover,
.slide-content .btn-gold:focus-visible,
.cta-strip .btn-gold:hover,
.cta-strip .btn-gold:focus-visible,
.footer-nl-strip .btn-gold:hover,
.footer-nl-strip .btn-gold:focus-visible {
    background: var(--text-on-dark);
    color: var(--color-primary);
    border-color: var(--text-on-dark);
}

.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%; /* match side panel height so both cards align */
}

.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(--color-primary);
    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(--color-primary-deep);
    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);
}

/* ── Reduced motion (animations.md performance rules) ── */
@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;
    }
}