/*
Theme Name: Jual Emas 916
Theme URI: https://jualemas916.my
Author: Jual Emas 916
Description: Premium gold selling service - Mont Kiara Kuala Lumpur
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: jualemas916
*/

/* =============================================
   ROOT — Emerald Green + Cream + Copper
   TOTALLY DIFFERENT from sites 1 & 2
============================================= */
:root {
  --emerald: #1B4332;
  --emerald2: #2D6A4F;
  --emerald3: #52B788;
  --copper: #B87333;
  --copper2: #D4875A;
  --cream: #FFFBF0;
  --cream2: #F5EFD9;
  --white: #ffffff;
  --dark: #111816;
  --text: #2D3D35;
  --text-light: #6B7C6E;
  --green-wa: #25D366;
  --shadow: 0 4px 24px rgba(27,67,50,0.12);
  --shadow-em: 0 6px 30px rgba(27,67,50,0.2);
  --radius: 4px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--emerald2); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--copper); }
ul { list-style: none; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.pad { padding: 90px 0; }

/* =============================================
   TYPOGRAPHY — Raleway + Nunito (different from both)
============================================= */
h1,h2,h3,h4 {
  font-family: 'Raleway', 'Georgia', serif;
  color: var(--emerald);
  line-height: 1.25;
  font-weight: 800;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.2rem; }
p { color: var(--text-light); margin-bottom: 1rem; font-size: 1rem; }

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(27,67,50,0.08);
  border: 1px solid rgba(27,67,50,0.18);
  color: var(--emerald2);
  padding: 5px 14px;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}
.copper-bar {
  width: 40px;
  height: 3px;
  background: var(--copper);
  margin: 14px 0 20px;
  border-radius: 2px;
}
.copper-bar.c { margin: 14px auto 20px; }

/* =============================================
   DUAL LANGUAGE
============================================= */
.lang-en { display: none !important; }
.lang-bm { display: inline; }
[data-lang="en"] .lang-en { display: inline !important; }
[data-lang="en"] .lang-bm { display: none !important; }
[data-lang="en"] .lang-en-block { display: block !important; }
[data-lang="en"] .lang-bm-block { display: none !important; }
.lang-en-block { display: none !important; }
.lang-bm-block { display: block; }

.lang-sw {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(27,67,50,0.2);
  border-radius: 3px;
  overflow: hidden;
}
.l-btn {
  padding: 5px 13px;
  font-size: 0.77rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  color: var(--text-light);
  letter-spacing: 0.5px;
  font-family: inherit;
}
.l-btn.on { background: var(--emerald); color: var(--white); }

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
}
.btn-em { background: var(--emerald); color: var(--white); }
.btn-em:hover { background: var(--emerald2); transform: translateY(-1px); color: var(--white); }
.btn-copper { background: var(--copper); color: var(--white); }
.btn-copper:hover { background: var(--copper2); transform: translateY(-1px); color: var(--white); }
.btn-ghost { background: transparent; color: var(--emerald); border-color: var(--emerald); }
.btn-ghost:hover { background: var(--emerald); color: var(--white); }
.btn-wa { background: linear-gradient(135deg,#25D366,#128C7E); color: var(--white); }
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); color: var(--white); }

/* =============================================
   TOP STRIP
============================================= */
.top-strip {
  background: var(--emerald);
  padding: 8px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
}
.top-strip .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.top-strip a { color: var(--emerald3); }
.top-strip a:hover { color: white; }
.ts-items { display: flex; gap: 24px; align-items: center; }
.ts-item { display: flex; align-items: center; gap: 6px; }

/* =============================================
   HEADER — Centered logo (totally different layout)
============================================= */
#hdr {
  background: var(--white);
  border-bottom: 2px solid var(--cream2);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: var(--transition);
}
#hdr.sc { box-shadow: var(--shadow); }
.hdr-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 24px;
  max-width: 1160px;
  margin: 0 auto;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-hex {
  width: 48px;
  height: 48px;
  background: var(--emerald);
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.logo-words .n1 { display: block; font-family: 'Raleway',sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--emerald); line-height: 1.1; }
.logo-words .n2 { display: block; font-size: 0.66rem; color: var(--copper); text-transform: uppercase; letter-spacing: 2px; font-weight: 700; }
.hdr-nav { display: flex; align-items: center; justify-content: center; gap: 4px; flex-wrap: wrap; }
.hdr-nav a {
  padding: 7px 13px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.hdr-nav a:hover, .hdr-nav a.on { color: var(--emerald); background: var(--cream2); }
.hdr-right { display: flex; align-items: center; gap: 10px; }
.call-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--cream2);
  border: 1px solid rgba(27,67,50,0.15);
  padding: 7px 14px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--emerald);
}
.call-badge:hover { background: var(--emerald); color: white; }
.mob-btn { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.mob-btn span { display: block; width: 22px; height: 2px; background: var(--emerald); margin: 5px 0; border-radius: 2px; }

/* =============================================
   HERO — Full-width editorial with diagonal split
   (completely different: no dark bg, diagonal shape)
============================================= */
#hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-diagonal {
  position: absolute;
  right: -60px;
  top: 0;
  bottom: 0;
  width: 55%;
  background: var(--emerald);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 1;
}
.hero-diagonal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}
.hero-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 24px;
}
.hero-txt {}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,115,51,0.12);
  border: 1px solid rgba(184,115,51,0.3);
  color: var(--copper);
  padding: 5px 14px;
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}
.hero-txt h1 { color: var(--emerald); margin-bottom: 16px; }
.hero-txt h1 em { font-style: normal; color: var(--copper); }
.hero-txt p { font-size: 1.05rem; max-width: 440px; margin-bottom: 28px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--emerald);
}
.trust-chip::before { content: '✓'; width: 18px; height: 18px; background: var(--emerald3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.65rem; flex-shrink: 0; }
.hero-visual {
  position: relative;
  z-index: 3;
}
.hero-img-frame {
  border-radius: 8px 8px 8px 60px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(27,67,50,0.35);
  border: 4px solid rgba(255,255,255,0.2);
}
.hero-img-frame img { width: 100%; height: 430px; object-fit: cover; }
.hero-badge-float {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--copper);
  color: white;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(184,115,51,0.45);
  font-weight: 800;
  z-index: 4;
}
.hero-badge-float .big { font-size: 1.6rem; line-height: 1; font-family: 'Raleway',sans-serif; }
.hero-badge-float .small { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; }
.hero-info-card {
  position: absolute;
  bottom: -16px;
  left: -24px;
  background: white;
  border-radius: 8px;
  padding: 14px 18px;
  box-shadow: var(--shadow-em);
  border-left: 4px solid var(--emerald3);
  z-index: 4;
}
.hero-info-card .big { font-family: 'Raleway',sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--emerald); line-height: 1; }
.hero-info-card .sm { font-size: 0.75rem; color: var(--text-light); }

/* =============================================
   MARQUEE STRIP
============================================= */
.marquee-strip {
  background: var(--emerald);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-block;
  animation: marquee 30s linear infinite;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}
.marquee-inner span { margin: 0 30px; }
.marquee-inner .dot { color: var(--emerald3); font-size: 1rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============================================
   SERVICES — Horizontal scrollable cards
============================================= */
#services { background: var(--white); }
.svc-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.svc-tile {
  background: var(--cream);
  border: 1px solid var(--cream2);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.svc-tile::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--copper);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.svc-tile:hover::before { transform: scaleX(1); }
.svc-tile:hover { box-shadow: var(--shadow-em); transform: translateY(-4px); }
.svc-num {
  font-family: 'Raleway',sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(27,67,50,0.08);
  line-height: 1;
  margin-bottom: -6px;
}
.svc-ico { font-size: 1.8rem; margin-bottom: 12px; }
.svc-tile h3 { color: var(--emerald); font-size: 1rem; margin-bottom: 8px; }
.svc-tile p { font-size: 0.86rem; margin: 0; }

/* =============================================
   ABOUT — Overlapping card layout
============================================= */
#about { background: var(--cream); }
.about-layout {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 70px;
  align-items: center;
}
.about-imgs { position: relative; height: 500px; }
.ab-img1 {
  position: absolute;
  top: 0; left: 0;
  width: 75%; height: 380px;
  object-fit: cover;
  border-radius: 8px 8px 8px 50px;
  box-shadow: var(--shadow-em);
  border: 5px solid white;
}
.ab-img2 {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 260px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 5px solid white;
}
.ab-badge {
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  background: var(--copper);
  color: white;
  padding: 18px 16px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(184,115,51,0.4);
  z-index: 10;
}
.ab-badge .big { font-family: 'Raleway',sans-serif; font-size: 2rem; font-weight: 800; line-height: 1; }
.ab-badge .sm { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; }
.about-body {}
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0 28px; }
.feat-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}
.feat-item::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--emerald3);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =============================================
   GOLD PRICE — Tabbed style
============================================= */
#price { background: var(--white); }
.price-notice {
  background: var(--cream2);
  border-left: 4px solid var(--copper);
  border-radius: 0 6px 6px 0;
  padding: 14px 20px;
  margin-bottom: 30px;
  font-size: 0.92rem;
  color: var(--text);
}
.ptbl-outer { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.ptbl { width: 100%; border-collapse: collapse; }
.ptbl thead tr { background: var(--emerald); }
.ptbl thead th { padding: 15px 20px; color: rgba(255,255,255,0.85); font-size: 0.86rem; text-align: left; font-weight: 600; }
.ptbl thead th:first-child { color: var(--emerald3); font-size: 0.88rem; }
.ptbl tbody tr { border-bottom: 1px solid var(--cream2); transition: background 0.2s; }
.ptbl tbody tr:hover { background: var(--cream); }
.ptbl tbody td { padding: 15px 20px; font-size: 0.91rem; color: var(--text); }
.k-tag { background: var(--emerald); color: white; padding: 2px 9px; border-radius: 20px; font-size: 0.73rem; font-weight: 700; margin-right: 8px; }
.pb-wrap { display: flex; align-items: center; gap: 10px; }
.pb { width: 70px; height: 4px; background: var(--cream2); border-radius: 3px; overflow: hidden; }
.pbf { height: 100%; background: linear-gradient(90deg, var(--emerald), var(--emerald3)); border-radius: 3px; }
.ask-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(27,67,50,0.07);
  color: var(--emerald2);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 3px;
  cursor: pointer;
  transition: var(--transition);
}
.ask-btn:hover { background: var(--emerald); color: white; }
.yes-tag { color: var(--emerald2); font-weight: 700; font-size: 0.84rem; }
.ptbl tfoot td { background: var(--cream); padding: 14px 20px; font-size: 0.86rem; color: var(--text-light); text-align: center; }

/* =============================================
   PROCESS — Vertical timeline (different from both)
============================================= */
#process { background: var(--cream); }
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--emerald), var(--emerald3), transparent);
}
.tl-item {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
  position: relative;
}
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
  width: 60px;
  height: 60px;
  background: var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Raleway',sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--emerald3);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 3px var(--emerald);
}
.tl-content {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  flex: 1;
  border-left: 3px solid var(--emerald3);
}
.tl-content h4 { color: var(--emerald); margin-bottom: 6px; font-size: 1.02rem; }
.tl-content p { font-size: 0.88rem; margin: 0; }

/* =============================================
   WHY US — Feature blocks with icons
============================================= */
#why { background: var(--emerald); }
.why-blocks {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.why-blk {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  transition: var(--transition);
}
.why-blk:hover { background: rgba(255,255,255,0.11); border-color: rgba(82,183,136,0.4); transform: translateY(-4px); }
.why-blk-ico {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.why-blk h3 { color: white; font-size: 1.05rem; margin-bottom: 10px; }
.why-blk p { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin: 0; }

/* =============================================
   FAQ — Minimal clean accordion
============================================= */
#faq { background: var(--white); }
.faq-clean { max-width: 820px; margin: 0 auto; }
.fc-row {
  border-bottom: 1px solid var(--cream2);
}
.fc-row:first-child { border-top: 1px solid var(--cream2); }
.fc-btn {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  font-family: 'Nunito',sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--emerald);
  transition: color 0.2s;
}
.fc-btn:hover { color: var(--copper); }
.fc-btn[aria-expanded="true"] { color: var(--copper); }
.fc-icon {
  width: 26px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
  transition: transform 0.3s;
}
.fc-btn[aria-expanded="true"] .fc-icon { transform: rotate(45deg); }
.fc-ans { display: none; padding: 0 0 20px; }
.fc-ans p { font-size: 0.93rem; color: var(--text); line-height: 1.85; margin: 0; }

/* =============================================
   TESTIMONIALS
============================================= */
#testi { background: var(--cream); }
.testi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.tc {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--emerald3);
  transition: var(--transition);
}
.tc:hover { transform: translateY(-4px); box-shadow: var(--shadow-em); }
.tc-stars { color: var(--copper); font-size: 1rem; margin-bottom: 14px; }
.tc q { font-style: italic; color: var(--text); font-size: 0.91rem; line-height: 1.8; display: block; margin-bottom: 18px; }
.tc-who { display: flex; align-items: center; gap: 12px; }
.tc-av { width: 38px; height: 38px; background: var(--emerald); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.tc-who strong { display: block; color: var(--emerald); font-size: 0.9rem; }
.tc-who span { font-size: 0.78rem; color: var(--text-light); }

/* =============================================
   CONTACT
============================================= */
#contact { background: var(--white); }
.cx-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.cx-info {}
.cx-row { display: flex; gap: 16px; margin-bottom: 26px; align-items: flex-start; }
.cx-ico {
  width: 42px;
  height: 42px;
  background: var(--cream2);
  border: 1px solid rgba(27,67,50,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.cx-row h5 { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 4px; font-weight: 700; font-family: 'Nunito',sans-serif; }
.cx-row p, .cx-row a { color: var(--emerald); font-weight: 700; font-size: 0.98rem; margin: 0; }
.cx-row a:hover { color: var(--copper); }
.wa-big {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg,#25D366,#128C7E);
  color: white;
  padding: 15px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.98rem;
  margin-top: 26px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  width: fit-content;
}
.wa-big:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); color: white; }
.wa-big svg { width: 22px; height: 22px; fill: white; }
.map-card { border-radius: var(--radius-lg); overflow: hidden; border: 2px solid var(--cream2); box-shadow: var(--shadow); }
.map-card iframe { display: block; width: 100%; }
.map-caption { background: var(--emerald); color: rgba(255,255,255,0.7); padding: 11px 18px; font-size: 0.82rem; display: flex; align-items: center; gap: 8px; }

/* =============================================
   CTA BANNER
============================================= */
.cta-band {
  background: var(--cream2);
  border-top: 3px solid var(--copper);
  border-bottom: 3px solid var(--copper);
  padding: 60px 0;
  text-align: center;
}

/* =============================================
   FOOTER
============================================= */
#footer { background: var(--dark); padding: 60px 0 0; }
.ft-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.ft-brand p { color: rgba(255,255,255,0.4); font-size: 0.87rem; margin: 14px 0; }
.ft-col h6 { color: var(--emerald3); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; font-family: 'Raleway',sans-serif; padding-bottom: 10px; border-bottom: 1px solid rgba(82,183,136,0.2); }
.ft-col ul li { margin-bottom: 8px; }
.ft-col ul li a { color: rgba(255,255,255,0.42); font-size: 0.86rem; }
.ft-col ul li a:hover { color: var(--emerald3); }
.ft-soc { display: flex; gap: 8px; margin-top: 14px; }
.fs-l { width: 34px; height: 34px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); font-size: 0.85rem; transition: var(--transition); }
.fs-l:hover { background: var(--emerald2); color: white; }
.ft-bot { border-top: 1px solid rgba(255,255,255,0.06); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.ft-bot p { color: rgba(255,255,255,0.28); font-size: 0.8rem; margin: 0; }
.ft-bot a { color: var(--emerald3); }
.ft-kw { font-size: 0.7rem; color: rgba(255,255,255,0.1); text-align: center; padding: 8px 0; border-top: 1px solid rgba(255,255,255,0.03); }

/* =============================================
   FLOATING WA
============================================= */
.wa-fab {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.wa-tip {
  background: white;
  color: var(--emerald);
  padding: 6px 13px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(8px);
  transition: var(--transition);
  pointer-events: none;
  white-space: nowrap;
}
.wa-fab:hover .wa-tip { opacity: 1; transform: translateX(0); }
.wa-orb {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg,#25D366,#128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  animation: orb-pulse 2.5s infinite;
  transition: transform 0.2s;
}
.wa-orb:hover { transform: scale(1.1); }
.wa-orb svg { width: 28px; height: 28px; fill: white; }
@keyframes orb-pulse { 0%,100%{box-shadow:0 0 0 0 rgba(37,211,102,0.5)} 50%{box-shadow:0 0 0 14px rgba(37,211,102,0)} }

.go-top { position: fixed; bottom: 92px; right: 26px; z-index: 9998; width: 40px; height: 40px; background: var(--emerald); color: white; border: none; border-radius: 4px; cursor: pointer; opacity: 0; transform: translateY(8px); transition: var(--transition); display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.go-top.show { opacity: 1; transform: translateY(0); }
.go-top:hover { background: var(--emerald2); }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width:1024px) {
  .svc-row { grid-template-columns: repeat(2,1fr); }
  .why-blocks { grid-template-columns: repeat(2,1fr); }
  .ft-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width:768px) {
  .hero-body { grid-template-columns: 1fr; }
  .hero-diagonal { display: none; }
  .hero-visual { display: none; }
  .about-layout { grid-template-columns: 1fr; }
  .about-imgs { display: none; }
  .cx-wrap { grid-template-columns: 1fr; }
  .testi-row { grid-template-columns: 1fr; }
  .hdr-nav { display: none; }
  .hdr-nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 16px; box-shadow: var(--shadow); border-top: 2px solid var(--emerald); z-index: 100; gap: 4px; }
  .mob-btn { display: block; }
  .call-badge { display: none; }
  .ft-grid { grid-template-columns: 1fr; }
  .ft-bot { justify-content: center; text-align: center; }
  .why-blocks { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .top-strip .ts-items:last-child { display: none; }
}
@media (max-width:480px) {
  .svc-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
}
