/*
Theme Name: Buy Back Emas
Theme URI: https://buybackemas.my
Author: Buy Back Emas
Description: Professional gold buyback service website - Mont Kiara Kuala Lumpur
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: buybackemas
*/

/* =============================================
   ROOT VARIABLES — Navy/Silver/White (DIFFERENT from HJE)
============================================= */
:root {
  --navy: #0B2545;
  --navy2: #134074;
  --blue: #1A6B9A;
  --silver: #C0C0C0;
  --silver-light: #E8E8E8;
  --gold-accent: #C9972B;
  --white: #ffffff;
  --off-white: #F4F7FB;
  --text: #2d3748;
  --text-light: #718096;
  --green-wa: #25D366;
  --red: #E53E3E;
  --shadow: 0 4px 24px rgba(11,37,69,0.12);
  --shadow-blue: 0 4px 20px rgba(26,107,154,0.25);
  --radius: 6px;
  --radius-lg: 14px;
  --transition: all 0.3s ease;
}

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

/* =============================================
   TYPOGRAPHY
============================================= */
h1,h2,h3,h4,h5 {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  line-height: 1.25;
  color: var(--navy);
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin-bottom: 1rem; color: var(--text-light); font-size: 1.02rem; }

.sec-label {
  display: inline-block;
  background: rgba(26,107,154,0.1);
  color: var(--blue);
  border: 1px solid rgba(26,107,154,0.25);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.sec-title { margin-bottom: 12px; }
.sec-title span { color: var(--blue); }
.blue-line {
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  border-radius: 4px;
  margin: 0 0 18px;
}
.blue-line.center { margin: 0 auto 18px; }
.sec-desc { color: var(--text-light); max-width: 580px; margin: 0 auto 50px; text-align: center; }

/* =============================================
   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-toggle {
  display: flex;
  align-items: center;
  background: var(--off-white);
  border: 1.5px solid #dde5f0;
  border-radius: 50px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  color: var(--text-light);
  letter-spacing: 0.5px;
}
.lang-btn.active {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(11,37,69,0.3);
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.97rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-navy:hover { background: var(--navy2); transform: translateY(-2px); color: var(--white); }
.btn-blue {
  background: var(--blue);
  color: var(--white);
}
.btn-blue:hover { background: var(--navy2); transform: translateY(-2px); color: var(--white); }
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
}
.btn-wa:hover { background: linear-gradient(135deg, #128C7E, #25D366); transform: translateY(-2px); color: var(--white); }

/* =============================================
   ANNOUNCEMENT BAR
============================================= */
.announce-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 9px 20px;
  font-size: 0.82rem;
  font-weight: 500;
}
.announce-bar a { color: #7EC8E3; font-weight: 700; }
.announce-bar strong { color: #fff; }

/* =============================================
   HEADER
============================================= */
#main-header {
  background: var(--white);
  border-bottom: 1px solid #e8edf5;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: var(--transition);
}
#main-header.scrolled { box-shadow: 0 4px 20px rgba(11,37,69,0.1); }
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
  gap: 20px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-icon {
  width: 46px;
  height: 46px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.brand-text .name {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.1;
}
.brand-text .sub {
  display: block;
  font-size: 0.67rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}
.site-nav { display: flex; align-items: center; gap: 3px; }
.site-nav a {
  padding: 7px 14px;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.site-nav a:hover, .site-nav a.active { color: var(--navy); background: var(--off-white); }
.header-right { display: flex; align-items: center; gap: 12px; }
.header-phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
  border: 1.5px solid #dde5f0;
  padding: 6px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.header-phone-link:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.ham-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.ham-btn span { display: block; width: 24px; height: 2.5px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: var(--transition); }

/* =============================================
   HERO — SPLIT LAYOUT (completely different from HJE)
============================================= */
#hero {
  background: var(--off-white);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-shape {
  position: absolute;
  right: -100px;
  top: -100px;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 50%;
  opacity: 0.06;
}
.hero-shape2 {
  position: absolute;
  left: -80px;
  bottom: -120px;
  width: 400px;
  height: 400px;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0.04;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-left {}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,107,154,0.1);
  border: 1px solid rgba(26,107,154,0.2);
  color: var(--blue);
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-tag::before { content: '●'; font-size: 0.5rem; color: var(--green-wa); }
.hero-h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); color: var(--navy); line-height: 1.2; margin-bottom: 20px; }
.hero-h1 em { font-style: normal; color: var(--blue); }
.hero-p { font-size: 1.05rem; color: var(--text-light); max-width: 480px; margin-bottom: 32px; }
.hero-p b { color: var(--navy); }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.hero-right { position: relative; }
.hero-card-stack { position: relative; }
.hero-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(11,37,69,0.2);
}
.hero-main-img img { width: 100%; height: 420px; object-fit: cover; }
.hero-stat-card {
  position: absolute;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(11,37,69,0.15);
  padding: 14px 20px;
  border-left: 4px solid var(--blue);
}
.hero-stat-card.c1 { top: 24px; left: -30px; }
.hero-stat-card.c2 { bottom: 30px; right: -20px; }
.hero-stat-card .num { font-family: 'Poppins',sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--navy); line-height: 1; }
.hero-stat-card .lbl { font-size: 0.75rem; color: var(--text-light); font-weight: 500; }

/* =============================================
   STATS STRIP
============================================= */
#stats-strip {
  background: var(--navy);
  padding: 30px 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-col {
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-col:last-child { border-right: none; }
.stat-col .big { font-family: 'Poppins',sans-serif; font-size: 2rem; font-weight: 800; color: #7EC8E3; line-height: 1; }
.stat-col .sm { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

/* =============================================
   SERVICES — CARD GRID
============================================= */
#services { background: var(--white); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.svc-card {
  border: 1px solid #e8edf5;
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
  background: var(--white);
  cursor: default;
}
.svc-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: translateY(-4px);
}
.svc-ico {
  width: 64px;
  height: 64px;
  background: var(--off-white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 18px;
  transition: var(--transition);
}
.svc-card:hover .svc-ico { background: var(--navy); }
.svc-card h3 { color: var(--navy); font-size: 1rem; margin-bottom: 10px; }
.svc-card p { font-size: 0.87rem; line-height: 1.65; margin: 0; }

/* =============================================
   ABOUT — HORIZONTAL SPLIT
============================================= */
#about { background: var(--off-white); }
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-right .img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-right .img-wrap img { width: 100%; height: 450px; object-fit: cover; }
.about-right .img-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 0.85rem;
}
.about-right .img-tag strong { display: block; font-size: 1.3rem; color: #7EC8E3; }
.checklist { margin: 22px 0; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.check-icon {
  width: 22px;
  height: 22px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-item p { margin: 0; color: var(--text); }

/* =============================================
   GOLD PRICE TABLE
============================================= */
#gold-price { background: var(--white); }
.price-alert {
  background: linear-gradient(135deg, #EBF4FF, #DBEAFE);
  border: 1px solid #BFDBFE;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  padding: 14px 22px;
  margin-bottom: 32px;
  font-size: 0.93rem;
  color: var(--navy);
}
.price-tbl-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid #e8edf5; box-shadow: var(--shadow); }
.price-tbl { width: 100%; border-collapse: collapse; background: var(--white); }
.price-tbl thead tr { background: var(--navy); }
.price-tbl thead th { padding: 16px 20px; color: rgba(255,255,255,0.9); font-size: 0.88rem; text-align: left; font-weight: 600; letter-spacing: 0.3px; }
.price-tbl thead th:first-child { color: #7EC8E3; }
.price-tbl tbody tr { border-bottom: 1px solid #f0f4fa; transition: var(--transition); }
.price-tbl tbody tr:hover { background: #f7faff; }
.price-tbl tbody tr:last-child { border-bottom: none; }
.price-tbl tbody td { padding: 15px 20px; font-size: 0.92rem; }
.karat-pill {
  display: inline-block;
  background: var(--navy);
  color: white;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-right: 8px;
}
.purity-wrap { display: flex; align-items: center; gap: 10px; }
.purity-bar2 { width: 80px; height: 5px; background: #e8edf5; border-radius: 4px; overflow: hidden; }
.purity-fill2 { height: 100%; background: linear-gradient(90deg, var(--navy), var(--blue)); border-radius: 4px; }
.ask-price {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.83rem;
  background: rgba(26,107,154,0.08);
  padding: 4px 12px;
  border-radius: 20px;
  cursor: pointer;
}
.accepted-tag { color: #16a34a; font-weight: 700; font-size: 0.85rem; }
.price-tbl tfoot td { background: var(--off-white); padding: 16px 20px; font-size: 0.88rem; color: var(--text-light); text-align: center; }

/* =============================================
   PROCESS — HORIZONTAL STEPS
============================================= */
#process { background: var(--navy); }
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(126,200,227,0.25);
  z-index: 0;
}
.step-col {
  text-align: center;
  padding: 10px 20px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 64px;
  height: 64px;
  background: rgba(126,200,227,0.15);
  border: 2px solid rgba(126,200,227,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #7EC8E3;
}
.step-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 10px; }
.step-col p { color: rgba(255,255,255,0.55); font-size: 0.86rem; margin: 0; }

/* =============================================
   WHY CHOOSE US — ICON LIST
============================================= */
#why-us { background: var(--off-white); }
.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.why-img img { width: 100%; height: 480px; object-fit: cover; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex;
  gap: 18px;
  background: var(--white);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #e8edf5;
  transition: var(--transition);
}
.why-item:hover { border-color: var(--blue); box-shadow: var(--shadow-blue); }
.why-ico {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.why-item h4 { color: var(--navy); margin-bottom: 5px; font-size: 0.97rem; }
.why-item p { font-size: 0.87rem; margin: 0; }

/* =============================================
   FAQ
============================================= */
#faq { background: var(--white); }
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-row {
  border-bottom: 1px solid #e8edf5;
  overflow: hidden;
}
.faq-row:first-child { border-top: 1px solid #e8edf5; border-radius: 8px 8px 0 0; }
.faq-row:last-child { border-radius: 0 0 8px 8px; }
.faq-q-btn {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--navy);
  transition: var(--transition);
}
.faq-q-btn:hover { background: var(--off-white); }
.faq-q-btn[aria-expanded="true"] { background: var(--off-white); color: var(--blue); }
.faq-arrow {
  width: 30px;
  height: 30px;
  border: 2px solid #dde5f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-q-btn[aria-expanded="true"] .faq-arrow { background: var(--blue); color: white; border-color: var(--blue); transform: rotate(45deg); }
.faq-ans { display: none; padding: 0 22px 18px; background: var(--off-white); }
.faq-ans p { font-size: 0.92rem; color: var(--text); line-height: 1.8; margin: 0; }

/* =============================================
   TESTIMONIALS
============================================= */
#testimonials { background: var(--navy); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.testi-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(126,200,227,0.3); }
.testi-stars { color: #F6C90E; font-size: 1rem; margin-bottom: 14px; }
.testi-card blockquote { font-style: italic; color: rgba(255,255,255,0.8); font-size: 0.92rem; line-height: 1.8; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 38px;
  height: 38px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; color: white; font-size: 0.9rem; }
.testi-author span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* =============================================
   CONTACT
============================================= */
#contact { background: var(--off-white); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-details { }
.info-block { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.info-ico {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: white;
}
.info-block h5 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 4px; font-weight: 600; font-family: inherit; }
.info-block p, .info-block a { color: var(--navy); font-weight: 600; font-size: 1rem; margin: 0; }
.info-block a:hover { color: var(--blue); }
.wa-cta-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 16px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 28px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  width: fit-content;
}
.wa-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.4); color: white; }
.wa-cta-btn svg { width: 24px; height: 24px; fill: white; }
.map-box { border-radius: var(--radius-lg); overflow: hidden; border: 2px solid #e8edf5; box-shadow: var(--shadow); }
.map-box iframe { display: block; width: 100%; }
.map-lbl { background: var(--navy); color: rgba(255,255,255,0.7); padding: 12px 20px; font-size: 0.83rem; display: flex; align-items: center; gap: 8px; }

/* =============================================
   FOOTER
============================================= */
#footer { background: #071929; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.88rem; margin: 14px 0; }
.footer-social { display: flex; gap: 10px; }
.soc-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: var(--transition);
}
.soc-link:hover { background: var(--blue); color: white; border-color: var(--blue); }
.footer-col h5 { color: #7EC8E3; font-size: 0.88rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; font-family: inherit; padding-bottom: 10px; border-bottom: 1px solid rgba(126,200,227,0.2); }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,0.45); font-size: 0.87rem; transition: var(--transition); }
.footer-col ul li a:hover { color: #7EC8E3; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.82rem; margin: 0; }
.footer-bottom a { color: #7EC8E3; }
.footer-keywords { font-size: 0.72rem; color: rgba(255,255,255,0.12); text-align: center; padding: 8px 0; border-top: 1px solid rgba(255,255,255,0.03); }

/* =============================================
   FLOATING WHATSAPP
============================================= */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.wa-tooltip {
  background: var(--white);
  color: var(--navy);
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
  white-space: nowrap;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
.wa-circle {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  animation: wa-pulse 2.5s infinite;
  transition: var(--transition);
}
.wa-circle:hover { transform: scale(1.1); }
.wa-circle svg { width: 30px; height: 30px; fill: white; }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* scroll top */
.scroll-up {
  position: fixed; bottom: 96px; right: 28px; z-index: 9998;
  width: 42px; height: 42px; background: var(--navy); color: white;
  border: none; border-radius: 8px; cursor: pointer; font-size: 1rem;
  box-shadow: var(--shadow); opacity: 0; transform: translateY(10px);
  transition: var(--transition); display: flex; align-items: center; justify-content: center;
}
.scroll-up.show { opacity: 1; transform: translateY(0); }
.scroll-up:hover { background: var(--blue); }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .steps-row { grid-template-columns: repeat(2,1fr); }
  .steps-row::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .about-wrap { grid-template-columns: 1fr; }
  .about-right { order: -1; }
  .why-wrap { grid-template-columns: 1fr; }
  .why-img { display: none; }
  .contact-wrap { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .site-nav.open {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: white; padding: 16px 20px;
    box-shadow: var(--shadow); border-top: 2px solid var(--navy); z-index: 100; gap: 4px;
  }
  .ham-btn { display: block; }
  .header-phone-link { display: none; }
  .footer-bottom { justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
  .svc-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .wa-float { bottom: 18px; right: 18px; }
}
