/* ============================================================
   SME MELAKA NEGERI MELAKA — Master Stylesheet v4
   Palette: White · Deep Black · Bold Red · Light Grey
   Clean, Professional, Bold, Modern Entrepreneurship
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');


/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  /* Core palette */
  --black:        #0a0a0a;
  --black-2:      #141414;
  --black-3:      #1e1e1e;

  --red:          #cc1212;
  --red-dark:     #a00e0e;
  --red-light:    #e63030;
  --red-pale:     #fff0f0;
  --red-dim:      rgba(204,18,18,0.08);
  --red-border:   rgba(204,18,18,0.2);

  --white:        #ffffff;
  --off-white:    #f8f8f8;
  --grey-1:       #f2f2f2;
  --grey-2:       #e8e8e8;
  --grey-3:       #d0d0d0;
  --grey-4:       #9ca3af;
  --grey-5:       #6b7280;
  --grey-6:       #374151;

  --text:         #0a0a0a;
  --text-2:       #374151;
  --text-muted:   #6b7280;
  --text-light:   #9ca3af;

  --border:       rgba(0,0,0,0.08);
  --border-dark:  rgba(0,0,0,0.15);

  --ff-display:   'Playfair Display', Georgia, serif;
  --ff-body:      'Plus Jakarta Sans', system-ui, sans-serif;
  --ff-mono:      'Space Mono', monospace;

  --nav-h:        72px;
  --r:            16px;
  --r-sm:         10px;
  --r-xs:         6px;
  --r-pill:       100px;

  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --ease-back:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --t:            0.35s var(--ease);
  --t-slow:       0.65s var(--ease);
  --t-fast:       0.18s var(--ease);

  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.16);
  --shadow-red:   0 8px 32px rgba(204,18,18,0.25);
  --shadow-red-lg:0 20px 60px rgba(204,18,18,0.3);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--ff-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--ff-body); cursor: pointer; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--grey-1); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 5px; }
::selection { background: var(--red-dim); color: var(--red); }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp    { from { opacity:0; transform: translateY(28px); } to { opacity:1; transform: translateY(0); } }
@keyframes fadeIn    { from { opacity:0; } to { opacity:1; } }
@keyframes slideR    { from { opacity:0; transform: translateX(28px); } to { opacity:1; transform: translateX(0); } }
@keyframes pulseRing { 0%{ transform:scale(1); opacity:.6; } 100%{ transform:scale(1.8); opacity:0; } }
@keyframes spin      { to { transform:rotate(360deg); } }
@keyframes barMove   { 0%{ transform:translateX(-100%); } 100%{ transform:translateX(100%); } }
@keyframes blink     { 0%,100%{ opacity:1; } 50%{ opacity:0; } }
@keyframes heroIn    { from{ opacity:0; transform:scale(1.05); } to{ opacity:1; transform:scale(1); } }
@keyframes shimmer   { 0%{ background-position: -200% center; } 100%{ background-position: 200% center; } }
@keyframes floatUp   { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-8px); } }
@keyframes redPulse  { 0%,100%{ box-shadow: 0 0 0 0 rgba(204,18,18,0.3); } 50%{ box-shadow: 0 0 0 12px rgba(204,18,18,0); } }
@keyframes gradFlow  { 0%{ background-position:0% 50%; } 50%{ background-position:100% 50%; } 100%{ background-position:0% 50%; } }
@keyframes tickerMove { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.reveal { opacity:0; transform:translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.visible { opacity:1; transform:translateY(0); }
.delay-1 { transition-delay:.1s; }
.delay-2 { transition-delay:.2s; }
.delay-3 { transition-delay:.32s; }
.delay-4 { transition-delay:.44s; }

/* ============================================================
   NAVBAR — White/clean with red CTA
   ============================================================ */
    
a:hover {
    color: grey !important;
}

.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900; height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 5%; gap: 32px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t), border-color var(--t);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border-color: var(--border-dark);
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  width: 44px; height: 44px;
  background: var(--black);
  border-radius: var(--r-xs);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 1.4rem; font-weight: 900; color: var(--white);
  position: relative; overflow: hidden;
  transition: transform var(--t), background var(--t);
}
.logo-img {
  height: 40px;
  width: auto;
}
.logo-mark::after {
  content: '';
  position: absolute; right: -2px; top: 0; bottom: 0; width: 14px;
  background: var(--red);
  clip-path: polygon(40% 0%, 100% 50%, 40% 100%, 0% 100%, 60% 50%, 0% 0%);
}
.logo-mark:hover { transform: scale(1.05); background: var(--black-2); }
.logo-name { display: block; font-family: var(--ff-body); font-size: 1rem; font-weight: 800; color: var(--black); letter-spacing: -0.01em; line-height: 1.2; }
.logo-sub  { display: block; font-family: var(--ff-mono); font-size: 0.48rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); }
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-links a {
  padding: 8px 15px; font-size: 1rem; font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--grey-5); border-radius: var(--r-pill);
  transition: color var(--t), background var(--t), transform var(--t-fast); white-space: nowrap;
}
.nav-links a:hover:not(.nav-cta) { color: var(--black); background: var(--grey-1); transform: translateY(-1px); }
.nav-links a.active:not(.nav-cta) { color: var(--red); background: var(--red-dim); font-weight: 700; }
.nav-links a.disabled { opacity: 0.35; cursor: default; pointer-events: none; }
.nav-cta {
  margin-left: 12px; padding: 10px 24px !important;
  background: var(--red) !important;
  color: var(--white) !important; border-radius: var(--r-pill) !important;
  font-weight: 800 !important; font-size: 1rem !important;
  letter-spacing: 0.03em !important;
  opacity: 1 !important; pointer-events: auto !important;
  transition: background var(--t), box-shadow var(--t), transform var(--t) !important;
  box-shadow: var(--shadow-red) !important;
}
.nav-cta:hover { background: var(--red-dark) !important; transform: translateY(-2px) !important; box-shadow: var(--shadow-red-lg) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; margin-left: auto; padding: 10px;
  border: 1.5px solid var(--border-dark); border-radius: var(--r-xs);
  transition: border-color var(--t), background var(--t);
}
.hamburger:hover { background: var(--red-dim); border-color: var(--red); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: var(--t); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none; position: fixed;
  top: var(--nav-h); right: 0; width: 100vw;
  background: var(--white); border-left: 1px solid var(--border);
  z-index: 850; flex-direction: column; padding: 28px 20px; gap: 6px;
  transform: translateX(110%); transition: transform var(--t-slow); overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  padding: 13px 18px; border-radius: var(--r); font-size: 1rem; font-weight: 600;
  color: var(--grey-5); transition: color var(--t), background var(--t); border: 1px solid transparent;
}
.mobile-nav a:hover:not(.nav-cta), .mobile-nav a.active:not(.nav-cta) { color: var(--red); background: var(--red-dim); border-color: var(--red-border); }
.mobile-nav a.disabled { opacity: 0.3; pointer-events: none; }
.mobile-nav .nav-cta { margin-top: 14px; text-align: center; background: var(--red) !important; color: var(--white) !important; border-radius: var(--r-pill) !important; }

/* ============================================================
   UTILITIES
   ============================================================ */
.section    { padding: 96px 5%; }
.section-sm { padding: 56px 5%; }
.container  { max-width: 1200px; margin: 0 auto; }
.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
  background: var(--red-dim); border: 1px solid var(--red-border);
  padding: 5px 14px; border-radius: var(--r-pill);
}
.label::before { content: '▶'; font-size: 0.5rem; }
.h2 {
  font-family: var(--ff-display); font-size: clamp(2rem,4vw,3.4rem); font-weight: 900; line-height: 1.08;
  color: var(--black); margin-bottom: 18px; letter-spacing: -0.01em;
}
.h2 em { font-style: italic; color: var(--red); }
.lead { font-size: 1.2rem; color: var(--text-muted); line-height: 1.85; max-width: 560px; }
.row-between { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section-header-center { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header-center .lead { margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 9px; padding: 13px 28px;
  border-radius: var(--r-pill); font-size: 1rem; font-weight: 700; letter-spacing: 0.01em;
  cursor: pointer; border: none; transition: transform var(--t), box-shadow var(--t), background var(--t);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-red { background: var(--red); color: var(--white); box-shadow: var(--shadow-red); }
.btn-red:hover { background: var(--red-dark); box-shadow: var(--shadow-red-lg); }
.btn-gold { background: var(--red); color: var(--white); box-shadow: var(--shadow-red); }
.btn-gold:hover { background: var(--red-dark); box-shadow: var(--shadow-red-lg); }
.btn-black { background: var(--black); color: var(--white); box-shadow: var(--shadow-md); }
.btn-black:hover { background: var(--black-2); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--grey-5); border: 1.5px solid var(--border-dark); }
.btn-ghost:hover { color: var(--black); border-color: var(--black); background: var(--grey-1); }
.btn-outline-red { background: transparent; color: var(--red); border: 2px solid var(--red-border); }
.btn-outline-red:hover { background: var(--red-dim); border-color: var(--red); }

/* ============================================================
   PAGE-HERO (About, Contact inner pages)
   ============================================================ */
.page-hero {
  /*min-height: 55vh; */
  display: flex; align-items: flex-end;
  padding: calc(var(--nav-h) + 72px) 5% 80px;
  position: relative; overflow: hidden; background: var(--black);
}
.ph-img { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.25) saturate(0.4); transition: transform 10s ease; }
.page-hero:hover .ph-img { transform: scale(1.04); }
.ph-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,10,10,0.92) 40%, rgba(10,10,10,0.5) 100%), linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 55%); }
.ph-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 60px 60px; mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%); }
.ph-content { position: relative; z-index: 2; }
.ph-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(204,18,18,0.15); border: 1px solid rgba(204,18,18,0.4); border-radius: var(--r-pill); font-family: var(--ff-mono); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: #ff6b6b; margin-bottom: 22px; }
.ph-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); box-shadow: 0 0 8px var(--red); animation: blink 1.6s ease infinite; }
.page-hero h1 { font-family: var(--ff-display); font-size: clamp(2.8rem,6vw,5rem); font-weight: 900; line-height: 1.05; max-width: 760px; color: var(--white); }
.page-hero h1 em { font-style: italic; color: #ff6b6b; }
.page-hero p { margin-top: 20px; font-size: 1.05rem; color: rgba(255,255,255,0.65); max-width: 540px; line-height: 1.8; }

/* ============================================================
   FOOTER — Dark black with red accents
   ============================================================ */
.footer { background: var(--black); border-top: 3px solid var(--red); padding: 72px 5% 36px; position: relative; }
.footer-top { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.6fr; gap: 56px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.fbrand .f-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.fbrand p { font-size: 1rem; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 24px; max-width: 300px; }
.f-socials { display: flex; gap: 10px; }
.f-social { width: 36px; height: 36px; border-radius: var(--r-sm); border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: color var(--t), border-color var(--t), background var(--t), transform var(--t-fast); }
.f-social:hover { color: var(--white); border-color: var(--red); background: rgba(204,18,18,0.2); transform: translateY(-3px); }
.footer-col h5 { font-family: var(--ff-mono); font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 1rem; color: rgba(255,255,255,0.5); transition: color var(--t), padding-left var(--t-fast); display: inline-block; }
.footer-col ul li a:hover { color: var(--white); padding-left: 5px; }
.f-crow { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: 1rem; color: rgba(255,255,255,0.5); }
.f-crow .fi { color: var(--red); flex-shrink: 0; width: 16px; margin-top: 3px; }
.f-crow a:hover { color: var(--white); }
.footer-bottom { padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 1rem; color: rgba(255,255,255,0.3); font-family: var(--ff-mono); }
.footer-bottom a { color: var(--red); }
/* Footer logo mark in dark mode */
.footer .logo-mark { background: var(--white); color: var(--black); }
.footer .logo-name { color: var(--white); }
.footer .logo-sub { color: var(--red); }

/* ============================================================
   STATS SECTION — Red background full-bleed, diagonal cuts
   ============================================================ */
.stats-section {
  position: relative; overflow: hidden;
  background: var(--red);
  padding: 84px 5%;
}
.stats-section::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0;
  height: 52px; background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}
.stats-section::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 52px; background: var(--off-white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}
.stats-bar { display: grid; grid-template-columns: repeat(4,1fr); position: relative; max-width: 1200px; margin: 0 auto; }
.stat-cell { padding: 20px 24px; text-align: center; position: relative; transition: transform var(--t); }
.stat-cell:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 15%; bottom: 15%; width: 1px; background: rgba(255,255,255,0.25); }
.stat-cell:hover { transform: scale(1.06) translateY(-5px); }
.stat-number { font-family: var(--ff-display); font-size: clamp(3rem,5vw,5.2rem); font-weight: 900; line-height: 1; color: var(--white); margin-bottom: 8px; text-shadow: 0 3px 12px rgba(0,0,0,0.2); }
.stat-label { font-size: 0.63rem; font-family: var(--ff-mono); letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.7); font-weight: 700; }

/* ============================================================
   HOME HERO — Dark photo with red accents
   ============================================================ */
.hero { min-height: 100vh; position: relative; align-items: center; overflow: hidden; background: var(--black); }
.hero-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1800&q=85&fm=jpg'); background-size: cover; background-position: center 30%; animation: heroIn 1.6s var(--ease) both; filter: brightness(0.35) saturate(0.5); }
.hero-ov1 { position: absolute; inset: 0; background: linear-gradient(115deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.3) 100%); }
.hero-ov2 { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,1) 0%, rgba(10,10,10,0.4) 40%, transparent 70%); }
.hero-tint { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 70% at 5% 40%, rgba(204,18,18,0.2) 0%, transparent 60%); }
.hero-tint2 { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 50% at 90% 60%, rgba(204,18,18,0.08) 0%, transparent 65%); }
.hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 72px 72px; mask-image: radial-gradient(ellipse 70% 70% at 15% 50%, black 0%, transparent 80%); }
.hero-side-line { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(to bottom, transparent, var(--red), var(--red-light), var(--red), transparent); opacity: 0.9; }
.hero-inner { position: relative; z-index: 2; padding: calc(var(--nav-h) + 48px) 5% 80px; max-width: 1200px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 7px 18px; border: 1px solid rgba(204,18,18,0.4); background: rgba(204,18,18,0.1); border-radius: var(--r-pill); font-family: var(--ff-mono); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: #ff8080; margin: 20px 0; animation: fadeIn 0.8s 0.2s both; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); position: relative; box-shadow: 0 0 8px var(--red); animation: redPulse 2s ease infinite; }
.live-dot::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid var(--red); animation: pulseRing 2s ease infinite; }
.hero-title { font-family: var(--ff-display); font-size: clamp(3rem,8vw,7rem); font-weight: 900; line-height: 1.0; margin-bottom: 28px; animation: fadeUp 0.9s 0.3s both; letter-spacing: -0.02em; color: var(--white); }
.ht-line  { display: block; }
.ht-blue  { color: var(--white); }
.ht-gold  { color: var(--red-light); font-style: italic; }
.ht-cursor { display: inline-block; width: 4px; background: var(--red); margin-left: 4px; animation: blink 1s step-end infinite; vertical-align: baseline; height: 0.85em; border-radius: 2px; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.6); max-width: 540px; line-height: 1.85; margin-bottom: 44px; animation: fadeUp 0.9s 0.45s both; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp 0.9s 0.6s both; }
.hero-float { position: absolute; bottom: 60px; right: 5%; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); border-radius: var(--r); padding: 18px 22px; display: flex; align-items: center; gap: 16px; z-index: 3; max-width: 290px; animation: slideR 0.8s 0.9s both; box-shadow: var(--shadow-lg); border-left: 4px solid var(--red); }
.hf-icon { width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--red); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; animation: redPulse 3s ease infinite; }
.hf-text strong { display: block; font-size: 0.84rem; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.hf-text span { font-size: 0.68rem; color: var(--text-muted); font-family: var(--ff-mono); }
.hero-scroll-hint { position: absolute; bottom: 36px; left: 5%; display: flex; align-items: center; gap: 12px; font-family: var(--ff-mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.3); z-index: 3; animation: fadeIn 1s 1.2s both; }
.scroll-track { width: 40px; height: 2px; background: rgba(255,255,255,0.15); position: relative; overflow: hidden; border-radius: 2px; }
.scroll-track::after { content: ''; position: absolute; top: 0; left: 0; width: 50%; height: 100%; background: var(--red); animation: barMove 1.8s ease infinite; border-radius: 2px; }

/* ============================================================
   ABOUT SECTION — Light grey bg, clean layout
   ============================================================ */
.about-section { background: var(--off-white); position: relative; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.aimg-wrap { position: relative; }
.aimg-frame { overflow: hidden; aspect-ratio: 3/4; background: var(--grey-1); position: relative; border-radius: var(--r); border: 2px solid var(--grey-2); box-shadow: 24px 24px 0 0 rgba(204,18,18,0.12), 24px 24px 0 2px var(--red-border); transition: box-shadow var(--t-slow), transform var(--t-slow); }
.aimg-wrap:hover .aimg-frame { transform: translate(-4px,-4px); box-shadow: 30px 30px 0 0 rgba(204,18,18,0.18), 30px 30px 0 2px var(--red); }
.aimg-frame img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85) saturate(0.7); transition: filter var(--t-slow), transform var(--t-slow); }
.aimg-wrap:hover .aimg-frame img { filter: brightness(1) saturate(1); transform: scale(1.04); }
.aimg-frame::before { content: ''; position: absolute; inset: 0; z-index: 1; border-radius: var(--r); background: linear-gradient(to bottom, transparent 50%, rgba(10,10,10,0.85) 100%); }
.aimg-frame::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 2; background: var(--red); border-radius: var(--r) var(--r) 0 0; }
.about-badge { position: absolute; top: 30px; left: -28px; z-index: 2; background: var(--black); padding: 20px 24px; text-align: center; border-radius: var(--r); box-shadow: var(--shadow-lg); animation: floatUp 4s ease infinite; border-left: 4px solid var(--red); }
.ab-num { font-family: var(--ff-display); font-size: 2.2rem; font-weight: 900; color: var(--white); line-height: 1; }
.ab-lbl { font-size: 0.54rem; font-family: var(--ff-mono); letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-top: 5px; }
.about-feats { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 28px; }
.feat-chip { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: var(--white); border: 1.5px solid var(--border); border-left: 4px solid var(--red); border-radius: var(--r-sm); font-size: 1rem; font-weight: 500; color: var(--text-2); transition: color var(--t), background var(--t), box-shadow var(--t), transform var(--t-fast); box-shadow: var(--shadow-sm); }
.feat-chip:hover { color: var(--black); background: var(--red-pale); border-left-color: var(--red-dark); box-shadow: var(--shadow-md); transform: translateX(5px); }
.feat-chip .ci { color: var(--red); flex-shrink: 0; font-size: 1.1rem; width: 24px; }

/* ============================================================
   JOIN GRID — White bg with black/red card mix
   ============================================================ */
.join-section { background: var(--white); }
.join-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 52px; }
.join-card { padding: 36px 26px 32px; position: relative; overflow: hidden; border-radius: var(--r); transition: transform var(--t), box-shadow var(--t); }
.join-card:hover { transform: translateY(-10px); }
.join-card:nth-child(1) { background: var(--white); border: 1.5px solid var(--border); box-shadow: var(--shadow-sm); }
.join-card:nth-child(1):hover { box-shadow: var(--shadow-lg); border-color: var(--red-border); }
.join-card:nth-child(2) { background: var(--red); box-shadow: var(--shadow-red); }
.join-card:nth-child(2):hover { box-shadow: var(--shadow-red-lg); background: var(--red-dark); }
.join-card:nth-child(2) h3 { color: var(--white) !important; }
.join-card:nth-child(2) p { color: rgba(255,255,255,0.72) !important; }
.join-card:nth-child(2) .jc-num { color: rgba(255,255,255,0.15) !important; }
.join-card:nth-child(2) .jc-icon { filter: brightness(0) invert(1); }
.join-card:nth-child(3) { background: var(--black); box-shadow: var(--shadow-md); }
.join-card:nth-child(3):hover { box-shadow: var(--shadow-lg); }
.join-card:nth-child(3) h3 { color: var(--white) !important; }
.join-card:nth-child(3) p { color: rgba(255,255,255,0.6) !important; }
.join-card:nth-child(3) .jc-num { color: rgba(255,255,255,0.1) !important; }
.join-card:nth-child(4) { background: var(--off-white); border: 1.5px solid var(--border); box-shadow: var(--shadow-sm); }
.join-card:nth-child(4):hover { box-shadow: var(--shadow-lg); border-color: var(--red-border); }
.join-card::after { content: ''; position: absolute; bottom: -30px; right: -20px; width: 120px; height: 120px; background: radial-gradient(ellipse, rgba(204,18,18,0.1) 0%, transparent 70%); pointer-events: none; }
.join-card:nth-child(2)::after, .join-card:nth-child(3)::after { background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%); }
.jc-num { position: absolute; top: -8px; right: 16px; font-family: var(--ff-display); font-size: 5.5rem; font-weight: 900; line-height: 1; color: var(--red); opacity: 0.1; user-select: none; transition: opacity var(--t); }
.join-card:hover .jc-num { opacity: 0.25; }
.jc-icon { font-size: 2rem; margin-bottom: 14px; margin-top: 36px; }
.join-card h3 { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--black); }
.join-card p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.75; }

/* ============================================================
   EVENTS — Light grey bg
   ============================================================ */
.events-section { background: var(--grey-1); }
.events-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px; }
.ev-card { background: var(--white); border-radius: var(--r); border: 1.5px solid var(--border); overflow: hidden; transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.ev-card:first-child { border-color: var(--red); box-shadow: 0 0 0 1px rgba(204,18,18,0.1); }
.ev-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: var(--red); }
.ev-img { overflow: hidden; position: relative; background: var(--grey-1); aspect-ratio: 16/9; }
.ev-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow), filter var(--t-slow); filter: brightness(0.88) saturate(0.75); }
.ev-card:hover .ev-img img { transform: scale(1.07); filter: brightness(1) saturate(1); }
.ev-date { position: absolute; bottom: 0; left: 0; background: var(--red); padding: 10px 16px 12px; border-top-right-radius: var(--r-sm); display: flex; align-items: baseline; gap: 5px; }
.ev-date-day { font-family: var(--ff-display); font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1; }
.ev-date-mon { font-size: 0.64rem; font-family: var(--ff-mono); letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.75); font-weight: 700; }
.ev-tag { display: none; }
.ev-body { padding: 22px 24px 26px; }
.ev-body h3 { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; line-height: 1.3; color: var(--black); }
.ev-body p { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.ev-link { display: inline-flex; align-items: center; gap: 7px; font-size: 0.76rem; font-weight: 800; color: var(--red); letter-spacing: 0.06em; text-transform: uppercase; font-family: var(--ff-mono); transition: gap var(--t), color var(--t); }
.ev-link:hover { gap: 13px; color: var(--red-dark); }
.ev-tag-pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; background: var(--red); border-radius: var(--r-pill); font-family: var(--ff-mono); font-size: 0.58rem; color: var(--white); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 10px; font-weight: 700; }

/* ============================================================
   MEMBERSHIP — Split: dark left, white right
   ============================================================ */
.mem-section { background: var(--white); }
.mem-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.mem-vis { position: relative; aspect-ratio: 4/5; border-radius: var(--r); background: var(--grey-1); border: 2px solid var(--border); overflow: hidden; box-shadow: -18px 18px 0 0 rgba(204,18,18,0.12), -18px 18px 0 2px var(--red-border); transition: transform var(--t-slow), box-shadow var(--t-slow); }
.mem-vis:hover { transform: translate(4px,-4px); box-shadow: -24px 24px 0 0 rgba(204,18,18,0.2), -24px 24px 0 2px var(--red); }
.mem-vis img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.6) saturate(0.5); display: block; transition: filter var(--t-slow); }
.mem-vis:hover img { filter: brightness(0.75) saturate(0.75); }
.mem-vis-ov { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(204,18,18,0.2) 0%, transparent 45%, rgba(10,10,10,0.85) 100%); }
.mem-vis-accent { position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--red); }
.mem-vis-txt { position: absolute; bottom: 0; left: 0; right: 0; padding: 36px; background: linear-gradient(to top, rgba(10,10,10,0.97), transparent); }
.mem-vis-txt blockquote { font-family: var(--ff-display); font-size: 1.25rem; font-style: italic; color: var(--white); line-height: 1.65; }
.benefits-list { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.brow { display: flex; align-items: center; gap: 16px; padding: 14px 18px; background: var(--white); border: 1.5px solid var(--border); border-left: 4px solid var(--red); border-radius: var(--r-sm); font-size: 1rem; font-weight: 500; color: var(--text-2); transition: color var(--t), background var(--t), transform var(--t), box-shadow var(--t); box-shadow: var(--shadow-sm); }
.brow:hover { color: var(--black); background: var(--red-pale); transform: translateX(6px); box-shadow: var(--shadow-md); border-left-color: var(--red-dark); }
.brow .bi { width: 34px; height: 34px; border-radius: var(--r-xs); background: var(--red); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; box-shadow: 0 4px 12px rgba(204,18,18,0.3); transition: transform var(--t); }
.brow:hover .bi { transform: scale(1.12) rotate(-5deg); }

/* ============================================================
   TICKER STRIP — Black with white text
   ============================================================ */
.gold-ticker { background: var(--black); padding: 14px 0; overflow: hidden; }
.gold-ticker-inner { display: flex; gap: 48px; white-space: nowrap; animation: tickerMove 20s linear infinite; }
.gold-ticker-inner span { font-family: var(--ff-mono); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6); flex-shrink: 0; }
.gold-ticker-inner span::before { content: '▶'; margin-right: 24px; color: var(--red); }

/* ============================================================
   TESTIMONIALS — Off-white bg
   ============================================================ */
.testi-section { background: var(--off-white); }
.testi-wrap { margin-top: 52px; overflow: hidden; }
.testi-track { display: flex; transition: transform 0.75s var(--ease); }
.testi-slide { min-width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.testi-card { padding: 40px 36px; position: relative; overflow: hidden; border-radius: var(--r); transition: transform var(--t), box-shadow var(--t); }
.testi-slide .testi-card:nth-child(odd) { background: var(--white); border: 1.5px solid var(--border); border-top: 4px solid var(--red); box-shadow: var(--shadow-sm); }
.testi-slide .testi-card:nth-child(even) { background: var(--black); border: none; box-shadow: var(--shadow-lg); }
.testi-slide .testi-card:nth-child(even) blockquote { color: rgba(255,255,255,0.85) !important; }
.testi-slide .testi-card:nth-child(even) .testi-stars span { color: var(--red) !important; }
.testi-slide .testi-card:nth-child(even) .ta-av { background: var(--red) !important; color: var(--white) !important; }
.testi-slide .testi-card:nth-child(even) .ta-info strong { color: var(--white) !important; }
.testi-slide .testi-card:nth-child(even) .ta-info span { color: rgba(255,255,255,0.45) !important; }
.testi-slide .testi-card:nth-child(even) .testi-author { border-top-color: rgba(255,255,255,0.1) !important; }
.testi-card:hover { transform: translateY(-5px); }
.testi-slide .testi-card:nth-child(odd):hover { box-shadow: var(--shadow-lg); border-color: var(--red); }
.testi-slide .testi-card:nth-child(even):hover { box-shadow: 0 28px 64px rgba(0,0,0,0.35); }
.testi-card::before { content: '\201C'; position: absolute; top: 8px; right: 20px; font-family: var(--ff-display); font-size: 9rem; color: var(--red); opacity: 0.07; line-height: 1; pointer-events: none; }
.testi-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.testi-stars span { color: var(--red); font-size: 1rem; }
.testi-card blockquote { font-family: var(--ff-display); font-size: 1.08rem; font-style: italic; color: var(--text-2); line-height: 1.85; margin-bottom: 28px; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 14px; padding-top: 22px; border-top: 1px solid var(--border); }
.ta-av { width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--red); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.86rem; color: var(--white); flex-shrink: 0; }
.ta-info strong { display: block; font-size: 1rem; font-weight: 700; color: var(--black); }
.ta-info span { font-size: 0.72rem; color: var(--text-muted); font-family: var(--ff-mono); }
.slider-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.slider-arrow { width: 48px; height: 48px; border-radius: var(--r-pill); background: var(--white); border: 1.5px solid var(--border); color: var(--grey-5); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: var(--t); box-shadow: var(--shadow-sm); }
.slider-arrow:hover { background: var(--red); border-color: var(--red); color: var(--white); box-shadow: var(--shadow-red); transform: scale(1.08); }
.slider-dots { display: flex; gap: 8px; align-items: center; }
.slider-dot { width: 28px; height: 3px; background: var(--grey-3); cursor: pointer; border-radius: 3px; transition: background var(--t), width var(--t); }
.slider-dot.active { background: var(--red); width: 44px; }

/* ============================================================
   NEWS SECTION — White bg
   ============================================================ */
.news-section { background: var(--white); }
.news-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 20px; margin-top: 44px; }
.news-feat { background: var(--white); border-radius: var(--r); border: 1.5px solid var(--border); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow var(--t), transform var(--t), border-color var(--t); box-shadow: var(--shadow-sm); }
.news-feat:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--red); }
.nf-img { aspect-ratio: 16/8; overflow: hidden; background: var(--grey-1); position: relative; }
.nf-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.88) saturate(0.8); transition: transform var(--t-slow), filter var(--t-slow); }
.news-feat:hover .nf-img img { transform: scale(1.05); filter: brightness(1) saturate(1); }
.nf-img::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--red); }
.nf-body { padding: 28px; flex: 1; }
.nf-body h3 { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700; margin: 12px 0 10px; line-height: 1.25; color: var(--black); }
.nf-body p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.78; margin-bottom: 18px; }
.news-stack { display: flex; flex-direction: column; gap: 12px; }
.nm { display: flex; gap: 0; background: var(--white); border-radius: var(--r-sm); border: 1.5px solid var(--border); overflow: hidden; transition: background var(--t), transform var(--t), box-shadow var(--t), border-color var(--t); box-shadow: var(--shadow-sm); }
.nm:hover { background: var(--red-pale); transform: translateX(4px); box-shadow: var(--shadow-md); border-color: var(--red); }
.nm-img { width: 96px; flex-shrink: 0; overflow: hidden; background: var(--grey-1); position: relative; }
.nm-img::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--red); }
.nm-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.9) saturate(0.6); }
.nm-body { padding: 14px 18px; display: flex; flex-direction: column; justify-content: center; }
.nm-body h3 { font-size: 0.86rem; font-weight: 700; line-height: 1.45; margin-top: 4px; color: var(--black); }
.n-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.n-cat { font-family: var(--ff-mono); font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); font-weight: 700; }
.n-date { font-size: 0.68rem; color: var(--text-light); }

/* ============================================================
   CTA STRIP — Black background bold red accents
   ============================================================ */
.cta-strip {
  background: var(--black);
  padding: 96px 5%; text-align: center; position: relative; overflow: hidden;
}
.cta-strip::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--red); }
.cta-strip::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--red); }
/* Red diagonal accent */
.cta-strip .cta-bg-accent {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(204,18,18,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-strip .h2 { color: var(--white) !important; position: relative; z-index: 1; margin-bottom: 16px; }
.cta-strip .h2 em { color: var(--red-light) !important; }
.cta-strip .lead { color: rgba(255,255,255,0.6) !important; position: relative; z-index: 1; margin: 0 auto 44px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.who-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.who-img-col { position: relative; }
.who-img-main { overflow: hidden; aspect-ratio: 3/4; background: var(--grey-1); position: relative; border-radius: var(--r); border: 2px solid var(--border); box-shadow: -24px 24px 0 0 rgba(204,18,18,0.12), -24px 24px 0 2px var(--red-border); transition: transform var(--t-slow), box-shadow var(--t-slow); }
.who-img-col:hover .who-img-main { transform: translate(4px,-4px); box-shadow: -30px 30px 0 0 rgba(204,18,18,0.18), -30px 30px 0 2px var(--red); }
.who-img-main img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.8) saturate(0.7); transition: filter var(--t-slow); }
.who-img-col:hover .who-img-main img { filter: brightness(1) saturate(0.9); }
.who-caption { position: absolute; bottom: 0; left: -24px; right: 24px; padding: 36px; border-radius: 0 0 var(--r) var(--r); background: linear-gradient(to top, rgba(10,10,10,0.97), transparent); border-left: 4px solid var(--red); }
.who-caption blockquote { font-family: var(--ff-display); font-size: 1.15rem; font-style: italic; color: var(--white); text-shadow: 0 1px 8px rgba(0,0,0,0.5); }

.objectives-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 48px; }
.obj-card { padding: 32px 22px; text-align: center; border-radius: var(--r); transition: transform var(--t), box-shadow var(--t); position: relative; overflow: hidden; }
.obj-card:hover { transform: translateY(-8px); }
.obj-card:nth-child(1) { background: var(--white); border: 1.5px solid var(--border); border-top: 4px solid var(--red); box-shadow: var(--shadow-sm); }
.obj-card:nth-child(1):hover { box-shadow: var(--shadow-lg); }
.obj-card:nth-child(2) { background: var(--red); box-shadow: var(--shadow-red); }
.obj-card:nth-child(2):hover { box-shadow: var(--shadow-red-lg); }
.obj-card:nth-child(2) h3 { color: var(--white) !important; }
.obj-card:nth-child(2) p { color: rgba(255,255,255,0.7) !important; }
.obj-card:nth-child(3) { background: var(--black); box-shadow: var(--shadow-md); }
.obj-card:nth-child(3):hover { box-shadow: var(--shadow-lg); }
.obj-card:nth-child(3) h3 { color: var(--white) !important; }
.obj-card:nth-child(3) p { color: rgba(255,255,255,0.55) !important; }
.obj-card:nth-child(4) { background: var(--off-white); border: 1.5px solid var(--border); border-top: 4px solid var(--red-border); box-shadow: var(--shadow-sm); }
.obj-card:nth-child(4):hover { box-shadow: var(--shadow-lg); border-top-color: var(--red); }
.obj-icon { font-size: 2.2rem; margin-bottom: 16px; }
.obj-card h3 { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--black); }
.obj-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.7; }

.vm-tabs { display: flex; gap: 0; margin-bottom: 44px; width: fit-content; border-radius: var(--r-pill); overflow: hidden; border: 2px solid var(--border-dark); }
.tab-btn { padding: 12px 36px; font-size: 0.75rem; font-weight: 700; cursor: pointer; border: none; background: transparent; color: var(--text-muted); transition: var(--t); font-family: var(--ff-mono); letter-spacing: 0.08em; text-transform: uppercase; }
.tab-btn.active { background: var(--red); color: var(--white); }
.tab-btn:not(.active):hover { background: var(--grey-1); color: var(--black); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.4s ease; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.vm-text h3 { font-family: var(--ff-display); font-size: 2.4rem; font-weight: 900; margin-bottom: 16px; color: var(--black); }
.vm-text h3 em { font-style: italic; color: var(--red); }
.vm-text p { color: var(--text-muted); line-height: 1.85; margin-bottom: 16px; }
.vm-points { display: flex; flex-direction: column; gap: 12px; margin-top: 10px; }
.vm-pt { display: flex; align-items: flex-start; gap: 14px; font-size: 1rem; color: var(--text-2); }
.vm-ptd { width: 24px; height: 24px; flex-shrink: 0; margin-top: 1px; border-radius: var(--r-xs); background: var(--red); display: flex; align-items: center; justify-content: center; }
.vm-ptd::after { content: '✓'; font-size: 0.72rem; color: var(--white); font-weight: 800; }
.vm-vis { display: flex; align-items: center; justify-content: center; aspect-ratio: 1; max-width: 300px; margin: 0 auto; position: relative; }
.vm-ring { position: absolute; border-radius: 50%; border: 1px solid; animation: spin linear infinite; }
.vmr1 { inset: 0;   border-color: rgba(204,18,18,0.2); animation-duration: 24s; }
.vmr2 { inset: 15%; border-color: rgba(204,18,18,0.12); animation-duration: 14s; animation-direction: reverse; }
.vmr3 { inset: 30%; border-color: rgba(204,18,18,0.3); animation-duration: 8s; }
.vm-center { width: 88px; height: 88px; border-radius: 50%; background: var(--red); display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-size: 2rem; font-weight: 900; color: var(--white); box-shadow: 0 0 40px rgba(204,18,18,0.5); animation: redPulse 3s ease infinite; z-index: 1; }
.vod { position: absolute; width: 12px; height: 12px; border-radius: 50%; }
.vod1 { background: var(--red); top: -6px; left: calc(50% - 6px); box-shadow: 0 0 14px var(--red); }
.vod2 { background: var(--red-dark); bottom: -6px; left: calc(50% - 6px); box-shadow: 0 0 14px var(--red); }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.val-card { padding: 40px 28px; position: relative; overflow: hidden; border-radius: var(--r); transition: transform var(--t), box-shadow var(--t); }
.val-card:hover { transform: translateY(-7px); }
.val-card:nth-child(1) { background: var(--red); box-shadow: var(--shadow-red); }
.val-card:nth-child(1):hover { box-shadow: var(--shadow-red-lg); }
.val-card:nth-child(1) h3, .val-card:nth-child(1) .val-num { color: var(--white) !important; }
.val-card:nth-child(1) p { color: rgba(255,255,255,0.72) !important; }
.val-card:nth-child(2) { background: var(--white); border: 1.5px solid var(--border); border-top: 4px solid var(--red); box-shadow: var(--shadow-sm); }
.val-card:nth-child(2):hover { box-shadow: var(--shadow-lg); }
.val-card:nth-child(3) { background: var(--black); box-shadow: var(--shadow-md); }
.val-card:nth-child(3):hover { box-shadow: var(--shadow-lg); }
.val-card:nth-child(3) h3, .val-card:nth-child(3) .val-num { color: var(--white) !important; }
.val-card:nth-child(3) p { color: rgba(255,255,255,0.6) !important; }
.val-card:nth-child(4) { background: var(--white); border: 1.5px solid var(--border); border-top: 4px solid var(--red); box-shadow: var(--shadow-sm); }
.val-card:nth-child(4):hover { box-shadow: var(--shadow-lg); }
.val-card:nth-child(5) { background: var(--off-white); border: 1.5px solid var(--border); border-top: 4px solid var(--border-dark); box-shadow: var(--shadow-sm); }
.val-card:nth-child(5):hover { box-shadow: var(--shadow-lg); border-top-color: var(--red); }
.val-card:nth-child(6) { background: var(--red-dark); box-shadow: var(--shadow-red); }
.val-card:nth-child(6):hover { box-shadow: var(--shadow-red-lg); }
.val-card:nth-child(6) h3, .val-card:nth-child(6) .val-num { color: var(--white) !important; }
.val-card:nth-child(6) p { color: rgba(255,255,255,0.72) !important; }
.val-num { position: absolute; top: 12px; right: 18px; font-family: var(--ff-display); font-size: 5rem; font-weight: 900; color: var(--red); opacity: 0.1; line-height: 1; user-select: none; transition: opacity var(--t); }
.val-card:hover .val-num { opacity: 0.22; }
.val-icon { font-size: 2.2rem; margin-bottom: 18px; position: relative; z-index: 1; }
.val-card h3 { font-family: var(--ff-display); font-size: 1.25rem; font-weight: 700; color: var(--black); margin-bottom: 10px; position: relative; z-index: 1; }
.val-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.75; position: relative; z-index: 1; }

.timeline { position: relative; margin-top: 52px; padding-left: 52px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, var(--red), rgba(204,18,18,0.15)); border-radius: 3px; }
.tl-item { position: relative; padding-bottom: 48px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot { position: absolute; left: -52px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--red); border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--red), var(--shadow-red); animation: redPulse 3s ease infinite; }
.tl-yr { font-family: var(--ff-mono); font-size: 0.7rem; color: var(--red); letter-spacing: 0.16em; margin-bottom: 8px; font-weight: 700; }
.tl-item h3 { font-family: var(--ff-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; color: var(--black); }
.tl-item p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; }
.c-info-col { position: sticky; top: 96px; }
.ci-card { background: var(--white); border: 1.5px solid var(--border); border-top: 4px solid var(--red); border-radius: var(--r); overflow: hidden; margin-bottom: 14px; box-shadow: var(--shadow-sm); transition: box-shadow var(--t), transform var(--t); }
.ci-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ci-head { padding: 22px 24px; background: linear-gradient(135deg, var(--red-pale), var(--white)); border-bottom: 1px solid var(--border); }
.ci-head h3 { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; color: var(--black); }
.ci-head p { font-size: 0.83rem; color: var(--text-muted); }
.ci-body { padding: 18px 22px; }
.ci-row { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--border); }
.ci-row:last-child { border-bottom: none; }
.ci-ico { width: 34px; height: 34px; background: var(--red); border-radius: var(--r-xs); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; }
.ci-txt strong { display: block; font-family: var(--ff-mono); font-size: 0.57rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 3px; }
.ci-txt span, .ci-txt a { font-size: 0.87rem; color: var(--text-2); line-height: 1.6; }
.ci-txt a:hover { color: var(--red); }
.hrs-card { background: var(--white); border: 1.5px solid var(--border); border-top: 3px solid var(--red); border-radius: var(--r); padding: 20px 22px; margin-bottom: 14px; box-shadow: var(--shadow-sm); }
.hrs-card h4 { font-family: var(--ff-mono); font-size: 0.57rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.hr-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 0.84rem; }
.hr-row:last-child { border-bottom: none; }
.hr-row .day { color: var(--text-muted); }
.hr-row .time { color: var(--black); font-weight: 600; }
.hr-row .closed { color: var(--red); }
.soc-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r); padding: 20px 22px; box-shadow: var(--shadow-sm); }
.soc-card h4 { font-family: var(--ff-mono); font-size: 0.57rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.sc-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.84rem; color: var(--text-muted); transition: color var(--t), padding-left var(--t-fast); cursor: pointer; }
.sc-row:last-child { border-bottom: none; }
.sc-row:hover { color: var(--red); padding-left: 6px; }
.sc-ico { width: 28px; height: 28px; background: var(--red); border-radius: var(--r-xs); display: flex; align-items: center; justify-content: center; font-size: 0.72rem; flex-shrink: 0; color: var(--white); }
.form-card { background: var(--white); border: 1.5px solid var(--border); border-top: 4px solid var(--red); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-md); }
.form-head { padding: 32px 36px 24px; border-bottom: 1px solid var(--border); background: linear-gradient(135deg, var(--red-pale), var(--white) 60%); }
.form-head h2 { font-family: var(--ff-display); font-size: 2rem; font-weight: 900; margin-bottom: 6px; color: var(--black); }
.form-head h2 em { font-style: italic; color: var(--red); }
.form-head p { font-size: 0.87rem; color: var(--text-muted); }
.form-body { padding: 28px 36px 36px; }
.fr2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fg { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.fg label { font-family: var(--ff-mono); font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; }
.fg label span { color: var(--red); }
.fi { background: var(--grey-1); border: 1.5px solid var(--border); border-bottom: 2px solid var(--grey-3); border-radius: var(--r-sm); padding: 13px 16px; color: var(--black); font-family: var(--ff-body); font-size: 1rem; outline: none; width: 100%; transition: border-color var(--t), box-shadow var(--t), background var(--t); }
.fi:focus { border-color: var(--red); border-bottom-color: var(--red); background: var(--white); box-shadow: 0 0 0 3px rgba(204,18,18,0.1); }
.fi::placeholder { color: var(--grey-4); }
textarea.fi { resize: vertical; min-height: 130px; }
select.fi { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23cc1212' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
select.fi option { background: var(--white); }
.chips-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.chips-lbl { font-family: var(--ff-mono); font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 9px; font-weight: 700; }
.chip { padding: 7px 16px; border: 1.5px solid var(--border); border-radius: var(--r-pill); font-size: 0.79rem; color: var(--text-muted); cursor: pointer; transition: var(--t); user-select: none; font-weight: 500; background: var(--white); }
.chip.on, .chip:hover { border-color: var(--red); color: var(--red); background: var(--red-pale); transform: translateY(-2px); }
.form-ft { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-top: 8px; }
.form-ft .fn { font-size: 0.77rem; color: var(--text-muted); }
.sub-btn { padding: 14px 40px; border-radius: var(--r-pill); background: var(--red); color: var(--white); border: none; font-weight: 800; font-size: 0.9rem; letter-spacing: 0.04em; cursor: pointer; font-family: var(--ff-body); display: inline-flex; align-items: center; gap: 8px; transition: background var(--t), box-shadow var(--t), transform var(--t); box-shadow: var(--shadow-red); }
.sub-btn:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: var(--shadow-red-lg); }
.sub-btn.loading { opacity: 0.7; pointer-events: none; }
.spin-ico { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,0.3); border-top-color: var(--white); border-radius: 50%; animation: spin 0.7s linear infinite; display: none; }
.sub-btn.loading .spin-ico { display: block; }
.f-success { display: none; text-align: center; padding: 56px 36px; }
.f-success.show { display: block; animation: fadeUp 0.6s ease; }
.fs-ico { width: 80px; height: 80px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 20px; box-shadow: var(--shadow-red-lg); animation: redPulse 3s ease infinite; }
.f-success h3 { font-family: var(--ff-display); font-size: 1.8rem; font-weight: 900; margin-bottom: 10px; color: var(--black); }
.f-success h3 em { font-style: italic; color: var(--red); }
.f-success p { color: var(--text-muted); margin-bottom: 24px; font-size: 0.92rem; }
.map-wrap { border-radius: var(--r); overflow: hidden; height: 380px; border: 1.5px solid var(--border); border-top: 3px solid var(--red); position: relative; box-shadow: var(--shadow-md); }
.map-wrap iframe { width: 100%; height: 100%; filter: grayscale(0.3) brightness(0.95); }
.map-overlay { position: absolute; top: 20px; left: 20px; background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); border: 1.5px solid var(--border); border-top: 3px solid var(--red); border-radius: var(--r-sm); padding: 16px 20px; max-width: 230px; box-shadow: var(--shadow-md); }
.map-overlay h4 { font-family: var(--ff-display); font-size: 0.95rem; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.map-overlay p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }
.faq-list { margin-top: 44px; }
.faq-item { border-bottom: 1px solid var(--border); transition: background var(--t); border-radius: var(--r-sm); margin-bottom: 2px; }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q { padding: 20px 14px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-weight: 700; font-size: 0.93rem; user-select: none; background: transparent; transition: color var(--t); color: var(--black); }
.faq-q:hover { color: var(--red); }
.faq-chev { font-size: 0.8rem; color: var(--red); transition: transform var(--t); flex-shrink: 0; }
.faq-item.open .faq-chev { transform: rotate(180deg); }
.faq-item.open { background: var(--red-pale); padding: 0 4px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s ease, padding 0.3s ease; padding: 0 14px; }
.faq-item.open .faq-a { max-height: 240px; padding: 0 14px 20px; }
.faq-a p { font-size: 0.87rem; color: var(--text-2); line-height: 1.85; }

/* ============================================================
    Scroll to Top and Whatsapp Chat Floatin
   ============================================================ */
    .scroll-to-top {
        color: white;
        border: 5px solid #fff;
        bottom: 70px;
    }
    
    .scroll-to-top i {
        line-height: 40px;
    }
    
    .floating-buttons {
        position: fixed;
        bottom: 60px;
        right: 41px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 9999;
    }
    
    .floating-buttons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 25px;
        color: white;
        text-decoration: none;
        transition: background-color 0.3s ease;
        box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
        border: 5px solid #fff;
    }
    
    /* WhatsApp styling */
    .whatsapp-btn {
        background-color: #25D366;
    }
    .whatsapp-btn:hover {
        background-color: #128C7E;
    }

    /* Base Footer Style */
    .footer-top-area {
        padding-top: 20px;
        padding-left: 20px;
    }
    
    /* Medium screens (laptops/tablets) */
    @media (max-width: 1920px) {
        .footer-top-area {
            padding-top: 80px;
            padding-left: 30px;
        }
    }
    
    /* Medium screens (laptops/tablets) */
    @media (max-width: 1366px) {
        .footer-top-area {
            padding-top: 40px;
            padding-left: 30px;
        }
    }
    
    /* Small screens (phones) */
    @media (max-width: 760px) {
        .footer-top-area {
            padding-top: 30px;
            padding-left: 15px;
        }
    }
    
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .about-grid, .mem-wrap, .who-grid, .vm-grid { grid-template-columns: 1fr; gap: 48px; }
  .join-grid { grid-template-columns: repeat(2,1fr); }
  .objectives-grid { grid-template-columns: repeat(2,1fr); }
  .events-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .news-layout { grid-template-columns: 1fr; }
  .testi-slide { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .c-info-col { position: static; }
}
@media (max-width: 600px) {
  :root { --nav-h: 64px; }
  .section { padding: 64px 4%; }
  .stats-section { padding: 64px 4%; }
  .join-grid, .objectives-grid, .events-grid, .values-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .fr2 { grid-template-columns: 1fr; }
  .form-head, .form-body { padding-left: 20px; padding-right: 20px; }
  .hero-float { display: none; }
  .aimg-frame { box-shadow: 12px 12px 0 0 rgba(204,18,18,0.12), 12px 12px 0 2px var(--red-border); }
  .about-badge { left: -10px; }
}
