/* ============================================================
   JK Enterprise — Global Stylesheet
   Theme: Black / Charcoal · Gold · White
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ---- Variables ---- */
:root {
  --black: #0a0a0a;
  --charcoal: #141414;
  --dark: #1a1a1a;
  --dark2: #222222;
  --dark3: #2c2c2c;
  --gold: #c9a84c;
  --gold-light: #e2c070;
  --gold-dark: #9d7a2e;
  --gold-gradient: linear-gradient(135deg, #c9a84c 0%, #e8d08a 50%, #c9a84c 100%);
  --white: #ffffff;
  --off-white: #f5f0e8;
  --text-muted: #aaa;
  --border: rgba(201,168,76,0.2);
  --section-pad: 100px 0;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --gold-shadow: 0 8px 30px rgba(201,168,76,0.25);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; line-height: 1.25; }

/* ---- Utility ---- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: var(--section-pad); }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.d-flex { display: flex; }
.align-center { align-items: center; }

.section-tag {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--white);
}
.section-title span { color: var(--gold); }
.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
}
.section-subtitle.center { margin: 0 auto; }
.divider {
  width: 60px; height: 3px;
  background: var(--gold-gradient);
  margin: 20px 0 28px;
  border-radius: 2px;
}
.divider.center { margin: 20px auto 28px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-gold {
  background: var(--gold-gradient);
  color: var(--black);
}
.btn-gold:hover {
  box-shadow: var(--gold-shadow);
  transform: translateY(-2px);
  color: var(--black);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark2);
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---- Top Bar ---- */
.topbar {
  background: var(--charcoal);
  border-bottom: 1px solid var(--border);
  padding: 9px 0;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
.topbar a, .topbar span {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar a:hover { color: var(--gold); }
.topbar-badge {
  background: var(--gold);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}

/* ---- Header / Nav ---- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 58px; width: 58px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; }
.logo-text .name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.logo-text .tagline {
  font-size: 9.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
nav ul { display: flex; align-items: center; gap: 6px; }
nav ul li a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  padding: 8px 14px;
  border-radius: 2px;
  position: relative;
}
nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}
nav ul li a:hover, nav ul li a.active {
  color: var(--gold);
}
nav ul li a:hover::after, nav ul li a.active::after {
  left: 14%; right: 14%;
}
.nav-cta { margin-left: 10px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 0% 100%, rgba(201,168,76,0.05) 0%, transparent 60%),
    linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
  z-index: 0;
}
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 0;
  background-image: 
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
  padding: 60px 0;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
}
.hero-eyebrow span {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 50px; }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 30px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--gold);
}
.hero-stat .lbl {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-muted);
}
.hero-image-side {
  position: absolute;
  right: -60px; top: 0; bottom: 0;
  width: 50%;
  z-index: 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-image-side::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 200px;
  background: linear-gradient(90deg, var(--black), transparent);
  z-index: 2;
}
.hero-pattern {
  position: absolute; inset: 0;
  background: 
    radial-gradient(circle at center, rgba(201,168,76,0.12) 0%, transparent 65%);
  display: flex; align-items: center; justify-content: center;
}
.hero-emblem {
  width: 340px; height: 340px;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-emblem::before {
  content: '';
  position: absolute; inset: 20px;
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 50%;
}
.hero-emblem img {
  width: 220px; height: 220px;
  object-fit: contain;
  opacity: 0.85;
}

/* ---- Products Section ---- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.product-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  group: true;
}
.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--gold-shadow);
}
.product-card-img {
  height: 200px;
  overflow: hidden;
  background: var(--dark2);
  position: relative;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.08);
}
.product-card-img .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.8), transparent 50%);
}
.product-card-body { padding: 22px; }
.product-card-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.product-card h3 {
  font-size: 1.15rem; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}
.product-card p {
  font-size: 0.87rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 16px;
}
.product-link {
  font-size: 11.5px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 6px;
}
.product-link:hover { gap: 10px; }

/* ---- About Snippet ---- */
.about-section { background: var(--charcoal); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-main {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-image-main img { width: 100%; height: 480px; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold-gradient);
  color: var(--black);
  width: 130px; height: 130px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}
.about-badge .num { font-size: 2rem; line-height: 1; }
.about-badge .txt { font-size: 10px; letter-spacing: 1px; }
.about-features { margin-top: 30px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.about-feature:last-child { border-bottom: none; }
.about-feature-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gold);
}
.about-feature h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.about-feature p { font-size: 0.875rem; color: var(--text-muted); }

/* ---- Export Process ---- */
.export-section { background: var(--black); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 50px;
  border: 1px solid var(--border);
}
.process-step {
  background: var(--dark);
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--dark2); }
.process-step:hover .step-icon { background: rgba(201,168,76,0.2); }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 900;
  color: rgba(201,168,76,0.08);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
}
.step-icon {
  width: 64px; height: 64px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: var(--gold);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.process-step p { font-size: 0.85rem; color: var(--text-muted); }

/* ---- Businesses / Divisions ---- */
.businesses-section { background: var(--charcoal); }
.businesses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.business-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.business-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}
.business-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--gold-shadow);
}
.business-card:hover::before { transform: scaleX(1); }
.business-icon {
  width: 60px; height: 60px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--gold);
  margin-bottom: 22px;
}
.business-card h3 {
  font-size: 1.3rem; font-weight: 700; margin-bottom: 6px;
  color: var(--white);
}
.business-card .domain {
  font-size: 11px; font-weight: 600; letter-spacing: 1px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 16px;
}
.business-card p {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 28px;
}

/* ---- CEO Message ---- */
.ceo-section { background: var(--black); }
.ceo-inner {
  display: grid;
  grid-template-columns: 600px 1fr;
  gap: 70px;
  align-items: center;
}
.ceo-image-wrap {
  position: relative;
}
.ceo-image-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.ceo-image-frame::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,10,10,0.7));
  z-index: 1;
}
.ceo-image-frame img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.ceo-gold-border {
  position: absolute;
  top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 1.5px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  z-index: -1;
}
.ceo-content blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.6;
  margin-bottom: 28px;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
}
.ceo-content .ceo-body {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 32px;
}
.ceo-info { display: flex; align-items: center; gap: 16px; }
.ceo-meta .name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700; color: var(--white);
}
.ceo-meta .title {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
}
.ceo-sig {
  width: 80px; height: 2px;
  background: var(--gold-gradient);
  margin: 8px 0 4px;
}

/* ---- Counters ---- */
.counters-section { background: var(--charcoal); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.counter-item {
  text-align: center;
  padding: 60px 20px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.counter-item:last-child { border-right: none; }
.counter-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px;
  background: var(--gold-gradient);
  transition: width 0.5s ease;
}
.counter-item:hover::before { width: 60%; }
.counter-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 900;
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  margin-bottom: 10px;
}
.counter-num .plus { font-size: 2rem; }
.counter-label {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-muted);
}

/* ---- CTA Banner ---- */
.cta-section {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.07) 0%, transparent 70%);
}
.cta-inner {
  position: relative; z-index: 1;
  text-align: center;
  padding: 90px 20px;
}
.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.cta-inner p {
  color: var(--text-muted); font-size: 1.05rem;
  max-width: 550px; margin: 0 auto 36px;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Contact Form ---- */
.contact-section { background: var(--black); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 { font-size: 1.6rem; margin-bottom: 20px; }
.contact-info p { color: var(--text-muted); margin-bottom: 30px; line-height: 1.8; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 20px;
}
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem;
}
.contact-detail-text .label {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 3px;
}
.contact-detail-text .value { color: var(--white); font-size: 0.9rem; }
.contact-detail-text a:hover { color: var(--gold); }

.contact-form {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark2);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  padding: 13px 16px;
  border-radius: 2px;
  outline: none;
  transition: var(--transition);
}
.form-group select option { background: var(--dark2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-msg {
  display: none; padding: 12px 16px;
  border-radius: 2px; font-size: 0.9rem; margin-top: 14px;
}
.form-msg.success { background: rgba(76,201,130,0.1); color: #4cc982; border: 1px solid rgba(76,201,130,0.3); }
.form-msg.error { background: rgba(201,76,76,0.1); color: #c94c4c; border: 1px solid rgba(201,76,76,0.3); }

/* ---- Footer ---- */
footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 70px 0 50px;
}
.footer-brand .logo { margin-bottom: 18px; }
.footer-brand p {
  color: var(--text-muted); font-size: 0.88rem; line-height: 1.8;
  max-width: 300px; margin-bottom: 22px;
}
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.footer-col h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: var(--text-muted); font-size: 0.88rem;
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { color: var(--text-muted); font-size: 12.5px; }
.footer-bottom a { color: var(--gold); }

/* ---- WhatsApp Float ---- */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px; z-index: 9999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}
.whatsapp-float svg {
  width: 28px; height: 28px; fill: white;
}
.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border: 2px solid rgba(37,211,102,0.4);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ---- Page Hero ---- */
.page-hero {
  background: var(--charcoal);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-muted);
  margin-bottom: 16px;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--border); }
.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; }

/* ---- Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }
.fade-up-d5 { transition-delay: 0.5s; }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .about-grid, .ceo-inner { grid-template-columns: 1fr; }
  .ceo-inner { gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .businesses-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-pad: 70px 0; }
  nav ul { display: none; flex-direction: column; background: var(--charcoal);
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    z-index: 999; padding: 80px 30px 30px; gap: 4px; }
  nav ul.open { display: flex; }
  nav ul li a { font-size: 1.1rem; padding: 12px; border-bottom: 1px solid var(--border); }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-image-side { display: none; }
  .hero-content { max-width: 100%; }
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .counter-item { border-bottom: 1px solid var(--border); }
  .businesses-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .topbar-left, .topbar-right { flex-wrap: wrap; gap: 10px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .counters-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 16px; }
}

/* ---- Map placeholder ---- */
.map-placeholder {
  height: 300px; background: var(--dark2);
  border: 1px solid var(--border); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
  color: var(--text-muted);
}
.map-placeholder span { font-size: 2.5rem; color: var(--gold); }

/* ---- Misc ---- */
.bg-charcoal { background: var(--charcoal); }
.bg-dark { background: var(--dark); }
.gold-line {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
