/* ────────────────────────────────────────────────
   KKDIFinmart  — Blue & White Professional Theme
   Font: Playfair Display (display) + DM Sans (body)
──────────────────────────────────────────────── */

:root {
  --blue-900: #0f1f4b;
  --blue-800: #1a3070;
  --blue-700: #1e40af;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-100: #dbeafe;
  --blue-50:  #eff6ff;
  --white:    #ffffff;
  --off-white:#f8faff;
  --gray-100: #f1f5f9;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --green:    #16a34a;
  --red:      #dc2626;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  --shadow-sm:  0 1px 3px rgba(15,31,75,.08);
  --shadow-md:  0 4px 16px rgba(15,31,75,.12);
  --shadow-lg:  0 12px 40px rgba(15,31,75,.18);
  --shadow-xl:  0 24px 60px rgba(15,31,75,.22);

  --radius:   12px;
  --radius-lg:20px;
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--blue-600);
  color: var(--white);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--blue-600);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .02em;
}
.btn-primary:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,.35);
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--blue-600);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--blue-600);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--blue-600);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Section headers ── */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-tag {
  display: inline-block;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--blue-900);
  line-height: 1.2;
  margin-bottom: .75rem;
}
.section-header p { color: var(--gray-500); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ═══════════════════════════════
   NAVIGATION
═══════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--blue-100);
  transition: box-shadow var(--transition);
}
#navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 68px;
}
.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-tag { font-size: .65rem; color: var(--gray-500); letter-spacing: .04em; margin-top: 1px; }

.nav-links { list-style: none; display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--gray-700); transition: color var(--transition); }
.nav-links a:hover { color: var(--blue-600); }
.nav-links .nav-cta {
  background: var(--blue-600); color: var(--white);
  padding: 10px 24px; border-radius: 50px;
  font-weight: 600; transition: var(--transition);
}
.nav-links .nav-cta:hover { background: var(--blue-700); transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--blue-900); border-radius: 2px; transition: var(--transition); }

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue-900) 0%, #1a3580 40%, var(--blue-700) 100%);
  display: flex; align-items: center;
  padding: 120px 24px 80px;
  position: relative; overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(59,130,246,.2) 0, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(96,165,250,.15) 0, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(30,64,175,.3) 0, transparent 50%);
  pointer-events: none;
}
/* subtle grid */
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 600px;
  animation: fadeUp .8s ease both;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  color: var(--blue-100);
  border: 1px solid rgba(255,255,255,.2);
  font-size: .82rem; font-weight: 600; letter-spacing: .06em;
  padding: 7px 18px; border-radius: 50px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.hero-title em { color: var(--blue-400); font-style: italic; }
.hero-sub { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 2.5rem; line-height: 1.6; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.hero-stats {
  display: flex; gap: 2rem; align-items: center; flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--ff-display); font-size: 1.8rem; font-weight: 700; color: var(--white); line-height: 1; }
.stat-label { font-size: .78rem; color: rgba(255,255,255,.6); letter-spacing: .04em; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

/* floating cards */
.hero-visual {
  position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 1.25rem; z-index: 2;
}
.hero-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 18px 24px;
  display: flex; align-items: center; gap: 1rem;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.hc-icon { font-size: 1.6rem; }
.hc-text { display: flex; flex-direction: column; }
.hc-label { font-size: .75rem; color: rgba(255,255,255,.65); letter-spacing: .04em; }
.hc-val { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-top: 2px; }
.hc-val.green { color: #4ade80; }

.card-float { animation: floatCard 3.5s ease-in-out infinite; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* scroll hint */
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.5); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  animation: fadeUp 1s .6s ease both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 1.5s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.5;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.1)} }

/* ═══════════════════════════════
   TICKER
═══════════════════════════════ */
.ticker-bar {
  background: var(--blue-900);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  border-bottom: 2px solid var(--blue-700);
}
.ticker-track {
  display: inline-flex; gap: 3rem;
  animation: ticker 30s linear infinite;
}
.tick { font-size: .82rem; color: rgba(255,255,255,.75); letter-spacing: .03em; }
.tick b { font-weight: 700; }
.tick.up b  { color: #4ade80; }
.tick.down b { color: #f87171; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ═══════════════════════════════
   SERVICES
═══════════════════════════════ */
#services {
  padding: 100px 0;
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.sc-accent {
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--ac);
}
.sc-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.sc-badge {
  display: inline-block;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
  margin-bottom: .75rem;
}
.service-card h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem; color: var(--blue-900);
  margin-bottom: .75rem;
}
.service-card p { color: var(--gray-500); font-size: .9rem; line-height: 1.6; margin-bottom: 1.25rem; }
.sc-features { list-style: none; display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.5rem; }
.sc-features li { font-size: .85rem; color: var(--gray-700); font-weight: 500; }
.sc-link { color: var(--blue-600); font-weight: 600; font-size: .88rem; transition: var(--transition); }
.sc-link:hover { color: var(--blue-800); letter-spacing: .02em; }

/* ═══════════════════════════════
   MARKETS
═══════════════════════════════ */
#markets {
  padding: 100px 0;
  background: var(--white);
}
.chart-tabs {
  display: flex; gap: 1rem; justify-content: center;
  margin-bottom: 2rem;
}
.tab-btn {
  background: var(--gray-100); color: var(--gray-500);
  border: 2px solid transparent;
  padding: 10px 28px; border-radius: 50px;
  font-family: var(--ff-body); font-weight: 600; font-size: .9rem;
  cursor: pointer; transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--blue-600); color: var(--white);
  border-color: var(--blue-600);
}
.charts-wrapper {
  background: var(--off-white);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
}
.chart-panel { display: none; }
.chart-panel.active { display: block; }
.chart-label {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--blue-100);
}
.chart-name { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 700; color: var(--blue-900); }
.chart-exch { font-size: .78rem; color: var(--gray-500); letter-spacing: .04em; }
.tradingview-widget-container { height: 440px; }
.tradingview-widget-container > div { height: 100%; }
.market-overview-widget .tradingview-widget-container { height: 120px; }
.market-overview-widget {
  background: var(--off-white);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ═══════════════════════════════
   ABOUT
═══════════════════════════════ */
#about {
  padding: 100px 0;
  background: var(--blue-900);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.about-text .section-tag { background: rgba(255,255,255,.12); color: var(--blue-100); }
.about-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white); line-height: 1.2; margin-bottom: 1.25rem;
}
.about-text p { color: rgba(255,255,255,.7); margin-bottom: 1rem; }
.about-certs { list-style: none; display: flex; flex-direction: column; gap: .75rem; margin-top: 1.5rem; }
.about-certs li { color: rgba(255,255,255,.85); display: flex; align-items: center; gap: .75rem; font-weight: 500; }
.cert-tick {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; background: var(--blue-600);
  border-radius: 50%; font-size: .75rem; flex-shrink: 0;
  color: var(--white);
}

.about-features { display: flex; flex-direction: column; gap: 1.5rem; }
.feat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
}
.feat-card:hover { background: rgba(255,255,255,.1); }
.feat-num {
  font-family: var(--ff-display);
  font-size: 2.5rem; font-weight: 900;
  color: rgba(255,255,255,.12);
  line-height: 1; margin-bottom: .5rem;
}
.feat-card h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.feat-card p { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ═══════════════════════════════
   PARTNERS
═══════════════════════════════ */
#partners {
  padding: 100px 0;
  background: var(--off-white);
}
.partners-row {
  display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center;
  margin-top: 1rem;
}
.partner-badge {
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  min-width: 160px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.partner-badge:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blue-400); }
.pb-icon {
  width: 52px; height: 52px;
  background: var(--blue-600);
  color: var(--white);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-size: 1.4rem; font-weight: 900;
  margin-bottom: .5rem;
}
.pb-name { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 700; color: var(--blue-900); }
.pb-desc { font-size: .75rem; color: var(--gray-500); text-align: center; }

/* ═══════════════════════════════
   TESTIMONIALS
═══════════════════════════════ */
#testimonials {
  padding: 100px 0;
  background: var(--white);
}
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.testi-card {
  background: var(--off-white);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: var(--blue-500); font-size: 1.1rem; margin-bottom: 1rem; }
.testi-card > p { font-size: .95rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 1.75rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar {
  width: 48px; height: 48px;
  background: var(--blue-600); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .95rem; color: var(--blue-900); }
.testi-author span  { font-size: .8rem; color: var(--gray-500); }

/* ═══════════════════════════════
   ENQUIRY
═══════════════════════════════ */
#enquiry {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue-50) 0%, var(--white) 100%);
}
.enquiry-wrapper {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start;
}
.enquiry-info .section-tag { margin-bottom: 1rem; }
.enquiry-info h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--blue-900); margin-bottom: 1rem; line-height: 1.2;
}
.enquiry-info > p { color: var(--gray-500); margin-bottom: 2.5rem; }

.contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem; background: var(--white);
  border: 1px solid var(--blue-100); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.contact-item:hover { border-color: var(--blue-400); transform: translateX(4px); }
.ci-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item strong { display: block; font-size: .9rem; color: var(--blue-900); margin-bottom: 2px; }
.contact-item span  { font-size: .85rem; color: var(--blue-600); }

/* Form */
.enquiry-form-wrap {
  background: var(--white);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.enquiry-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--blue-900); letter-spacing: .02em; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--ff-body); font-size: .9rem; color: var(--gray-700);
  background: var(--off-white);
  transition: var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; border: none; }
.form-msg { text-align: center; font-size: .9rem; font-weight: 600; margin-top: .5rem; min-height: 1.4rem; }
.form-msg.success { color: var(--green); }
.form-msg.error   { color: var(--red); }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
#footer {
  background: var(--blue-900);
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { max-width: 280px; }
.footer-brand p { font-size: .875rem; line-height: 1.7; margin: 1rem 0 1.5rem; color: rgba(255,255,255,.55); }
.social-links { display: flex; gap: 1rem; }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.social-links a:hover { background: var(--blue-600); border-color: var(--blue-600); color: var(--white); }

.footer-col h5 { font-size: .85rem; font-weight: 700; color: var(--white); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.footer-col ul li, .footer-col ul a { font-size: .875rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--blue-400); }

.footer-bottom {
  text-align: center; padding: 2rem 24px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); line-height: 1.6; }
.footer-bottom .disclaimer { margin-top: .5rem; font-size: .72rem; color: rgba(255,255,255,.25); }

/* ═══════════════════════════════
   ANIMATIONS
═══════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .enquiry-wrapper { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--white); padding: 2rem; gap: 1.5rem; border-bottom: 1px solid var(--blue-100); box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-title { font-size: 2.6rem; }
  .hero-stats { gap: 1.25rem; }
  .stat-num { font-size: 1.4rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  #markets { padding: 60px 0; }
  .tradingview-widget-container { height: 320px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
  .partners-row { gap: 1rem; }
  .partner-badge { min-width: 130px; padding: 1.5rem 1.25rem; }
}

/* ═══════════════════════════════
   BRAND TEXT STYLES
═══════════════════════════════ */
.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-decoration: none;
}
.brand-name {
  line-height: 1;
}
.brand-kk {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 1.55rem;
  color: var(--blue-900);
  letter-spacing: -.01em;
}
.brand-fin {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.55rem;
  color: var(--blue-600);
}
.footer-brand-name .brand-kk,
.footer-brand-name .brand-fin {
  font-size: 2rem;
  color: #fff;
}

/* ═══════════════════════════════
   WHATSAPP CONTACT ITEM
═══════════════════════════════ */
.whatsapp-item {
  border-color: #dcfce7 !important;
  background: #f0fdf4 !important;
  position: relative;
}
.whatsapp-item:hover { border-color: #25D366 !important; }
.wa-badge {
  position: absolute; top: 10px; right: 12px;
  background: #25D366; color: #fff;
  font-size: .62rem; font-weight: 800; letter-spacing: .1em;
  padding: 2px 8px; border-radius: 50px;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.75; transform:scale(1.05); }
}

/* ═══════════════════════════════
   FLOATING WHATSAPP BUTTON
═══════════════════════════════ */
.float-wa {
  position: fixed;
  bottom: 28px; right: 24px;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px 12px 14px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  z-index: 998;
  font-family: var(--ff-body);
  font-size: .88rem; font-weight: 600;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}
.float-wa:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 32px rgba(37,211,102,.55);
}
.float-wa-label { white-space: nowrap; }

@media (max-width: 480px) {
  .float-wa-label { display: none; }
  .float-wa { padding: 14px; border-radius: 50%; bottom: 20px; right: 16px; }
}
