/* ============================================================
   KERA ELITE MARKETING MANAGEMENT — Main Stylesheet (White Theme)
   Color Palette: Gold #D4AF37 | White #FFFFFF | Dark #1A1A2E
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --gold:          #D4AF37;
  --gold-light:    #E8C84A;
  --gold-dark:     #A8892B;
  --gold-pale:     #FDF6DC;
  --gold-border:   rgba(212,175,55,0.25);
  --dark:          #0D0D1A;
  --dark-2:        #12122A;
  --dark-3:        #1A1A38;
  --white:         #FFFFFF;
  --off-white:     #FAFAFA;
  --cream:         #FBF8F2;
  --cream-2:       #F5F0E8;
  --light-grey:    #F3F4F6;
  --text-primary:  #1A1A2E;
  --text-secondary:#4B5563;
  --text-muted:    #9CA3AF;
  --border:        #E5E7EB;
  --border-gold:   rgba(212,175,55,0.2);
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.1);
  --shadow-gold:   0 8px 32px rgba(212,175,55,0.22);
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    all 0.32s cubic-bezier(0.4,0,0.2,1);
  --font-head:     'Poppins', sans-serif;
  --font-body:     'Open Sans', sans-serif;
  --container-max: 1200px;
  --container-pad: 40px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 1.12rem; line-height: 1.8; color: var(--text-secondary); }

/* Gold gradient text */
.text-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-white { color: var(--white) !important; }
.text-center { text-align: center; }

/* ── Consistent Layout System ── */
.section     { padding: 96px 0; }
.section-sm  { padding: 56px 0; }
.section-dark  { background: var(--dark);   }
.section-cream { background: var(--cream);  }
.section-light { background: var(--light-grey); }

/* SINGLE CONTAINER — used by EVERY section */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* Section heading group */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.section-tag::before, .section-tag::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.section-title { margin-bottom: 16px; }
.section-desc  {
  max-width: 600px;
  margin: 0 auto 56px;
  color: var(--text-secondary);
}
.divider {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px auto;
}
.divider-left { margin: 16px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(212,175,55,0.35);
  border-color: transparent;
}
.btn-gold:hover {
  box-shadow: 0 8px 30px rgba(212,175,55,0.5);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: transparent;
}
.btn-dark:hover {
  background: var(--dark-3);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--dark);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  background: var(--gold-pale);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   HEADER — Always White
══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.18);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
  border-bottom-color: rgba(212,175,55,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 56px;
  width: auto;
  transition: height 0.3s ease;
}
.site-header.scrolled .logo-img { height: 44px; }

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  position: relative;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  transition: var(--transition);
  border-radius: 8px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 18px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.28s ease;
}
.nav-link:hover { color: var(--gold-dark); background: var(--gold-pale); }
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.nav-link.active { color: var(--gold-dark); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(212,175,55,0.35);
  letter-spacing: 0.02em;
}
.nav-cta:hover {
  box-shadow: 0 6px 22px rgba(212,175,55,0.5);
  transform: translateY(-1px);
  background: var(--gold-pale);
}
.nav-cta::after { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ══════════════════════════════════════════
   HERO — Full Background Image + Centered
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('/assets/images/hero-bg.jpg') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
  padding-top: 84px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 6, 18, 0.80) 0%,
    rgba(14, 10, 28, 0.72) 50%,
    rgba(20, 14, 10, 0.75) 100%
  );
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 70px 0 60px;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Hero logo on top */
.hero-logo-top {
  width: 120px;
  height: auto;
  margin-bottom: 28px;
  filter: drop-shadow(0 4px 20px rgba(212,175,55,0.4)) brightness(1.08);
  animation: float-logo 6s ease-in-out infinite;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 20px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 26px;
  backdrop-filter: blur(8px);
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.6); }
}
.hero-title { color: var(--white); margin-bottom: 22px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero-desc  {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 640px;
  margin-bottom: 38px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
  justify-content: center;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  width: 100%;
}
.hero-stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 5px;
}
/* Hero right visual */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.hero-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-glow {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 68%);
  border-radius: 50%;
  animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%       { transform: scale(1.08); opacity: 1; }
}
.hero-logo-ring {
  position: absolute;
  width: 360px; height: 360px;
  border: 1px solid rgba(212,175,55,0.22);
  border-radius: 50%;
  animation: rotate-ring 22s linear infinite;
}
.hero-logo-ring-2 {
  width: 300px; height: 300px;
  border-style: dashed;
  border-color: rgba(212,175,55,0.14);
  animation-direction: reverse;
  animation-duration: 32s;
}
@keyframes rotate-ring { to { transform: rotate(360deg); } }
.hero-logo-img {
  width: 270px;
  height: auto;
  position: relative;
  z-index: 2;
  animation: float-logo 6s ease-in-out infinite;
  filter: drop-shadow(0 12px 30px rgba(212,175,55,0.2));
}
@keyframes float-logo {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* ── Page Hero (inner pages) — Light ── */
.page-hero {
  background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.95)), url('../images/hero-bg.jpg') center/cover no-repeat;
  padding-top: 84px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-gold);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 0 56px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold-dark); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--text-muted); }
.page-hero-title {
  color: var(--text-primary);
  font-size: clamp(2rem, 5vw, 3.8rem);
  margin-bottom: 16px;
}
.page-hero p { color: var(--text-secondary); max-width: 560px; margin-top: 14px; }

/* ══════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about-logo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
}
.about-logo-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.about-logo-card img { width: 220px; margin: 0 auto; }
.about-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
}
.about-main-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.about-pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-top: 20px;
}
.pillar-chip {
  background: var(--gold-pale);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 7px 4px;
  text-align: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.float-badge {
  position: absolute;
  background: var(--dark);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212,175,55,0.3);
}
.float-badge-1 { bottom: -16px; right: -16px; }
.float-badge-2 { top: -16px; left: -16px; }
.float-badge .fb-num { font-family: var(--font-head); font-size: 1.6rem; color: var(--gold); font-weight: 700; line-height: 1; }
.float-badge .fb-text { font-size: 0.68rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; }

.about-text .section-title { text-align: left; }
.about-text p { margin-bottom: 18px; }

.license-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--cream);
  padding: 18px 22px;
  border-radius: var(--radius);
  margin-top: 28px;
  border: 1px solid var(--border-gold);
}
.license-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; color: var(--white);
}
.license-icon i { color: var(--white); }
.license-info strong { display: block; font-size: 0.88rem; color: var(--gold-dark); font-family: var(--font-head); font-weight: 600; }
.license-info span  { font-size: 0.78rem; color: var(--text-muted); }

/* ══════════════════════════════════════════
   SERVICE CARDS
══════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: var(--border-gold);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 76px; height: 76px;
  background: var(--gold-pale);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-icon i { color: var(--gold-dark); transition: color 0.28s; }
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: var(--shadow-gold);
}
.service-card:hover .service-icon i { color: var(--white); }
.service-card.with-icon-padding {
  padding: 36px 28px;
}
.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}
.service-card-body {
  padding: 28px 24px 32px;
  flex-grow: 1;
}
.service-card h4 { color: var(--text-primary); margin-bottom: 12px; font-size: 1.65rem; font-weight: 700; }
.service-card p  { font-size: 1.05rem; margin: 0; }

.process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  padding: 40px 24px;
  text-align: center;
}
.process-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}
.process-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: var(--shadow-gold);
}
.process-card:hover .service-icon i { color: var(--white); }

/* ══════════════════════════════════════════
   STATS SECTION — Dark (contrast break)
══════════════════════════════════════════ */
.stats-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(212,175,55,0.07) 0%, transparent 70%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.stat-card {
  text-align: center;
  padding: 36px 16px;
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  transition: var(--transition);
}
.stat-card:hover {
  border-color: rgba(212,175,55,0.4);
  background: rgba(212,175,55,0.05);
  transform: translateY(-4px);
}
.stat-card .stat-icon { font-size: 3rem; margin-bottom: 18px; display: block; color: var(--gold); }
.stat-card .stat-icon i { color: var(--gold); }
.stat-card .count { font-family: var(--font-head); font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; display: block; }
.stat-card .label { font-size: 0.82rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 8px; display: block; }

/* ══════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 16px; }
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.why-item:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
  transform: translateX(4px);
}
.why-item-icon {
  width: 62px; height: 62px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; flex-shrink: 0; color: var(--white);
}
.why-item-icon i { color: var(--white); }
.why-item-text h4 { color: var(--text-primary); margin-bottom: 5px; font-size: 1.4rem; font-weight: 700; }
.why-item-text p  { font-size: 1rem; margin: 0; }

.why-big-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid rgba(212,175,55,0.2);
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.why-big-card .wbc-icon { font-size: 3rem; margin-bottom: 18px; display: block; color: var(--gold); }
.why-big-card .wbc-icon i { color: var(--gold); }
.why-big-card h3 { color: var(--white); margin-bottom: 12px; }
.why-big-card p  { color: rgba(255,255,255,0.6); margin: 0; font-size: 0.95rem; }
.why-big-card .gold-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
  letter-spacing: 0.08em;
}

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-inner h2 { color: var(--dark); margin-bottom: 14px; }
.cta-inner p  { color: rgba(13,13,26,0.72); margin-bottom: 34px; font-size: 1.08rem; }

/* ══════════════════════════════════════════
   ABOUT PAGE — Values
══════════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
  justify-content: center;
}
.value-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.value-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}
.value-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}
.value-card-body {
  padding: 24px 20px 28px;
  flex-grow: 1;
}
.value-card h4 { font-size: 1.1rem; color: var(--text-primary); margin-bottom: 8px; font-weight: 700; }
.value-card p  { font-size: 0.95rem; margin: 0; }

/* Owner/Leadership */
.owner-section { background: var(--dark); }
.owner-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: center;
}
.owner-visual { text-align: center; }
.owner-img-wrap {
  width: 260px; height: 260px;
  border-radius: var(--radius-lg);
  margin: 0 auto 22px;
  box-shadow: 0 0 40px rgba(212,175,55,0.25);
  border: 4px solid rgba(212,175,55,0.35);
  overflow: hidden;
}
.owner-img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.owner-name { font-family: var(--font-head); font-size: 1.4rem; color: var(--white); font-weight: 600; }
.owner-role { font-size: 0.8rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 5px; }
.owner-content h3 { color: var(--white); margin-bottom: 18px; }
.owner-content p  { color: rgba(255,255,255,0.65); margin-bottom: 14px; }

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}
.mv-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212,175,55,0.2);
  background: rgba(255,255,255,0.03);
}
.mv-card .mv-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.mv-card h4 { color: var(--white); margin-bottom: 9px; }
.mv-card p  { color: rgba(255,255,255,0.6); margin: 0; font-size: 0.93rem; }

/* DET Badge */
.det-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--gold-pale);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  margin-top: 14px;
}
.det-badge span { font-size: 0.78rem; font-weight: 600; color: var(--gold-dark); line-height: 1.4; }

/* ══════════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════════ */
.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-secondary);
  transition: var(--transition);
  font-family: var(--font-body);
  box-shadow: var(--shadow-sm);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--dark);
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.portfolio-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.portfolio-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-card:hover .portfolio-card-bg { transform: scale(1.08); }
.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,26,0.95) 0%, rgba(13,13,26,0.5) 45%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  transform: translateY(0);
  opacity: 1;
  transition: var(--transition);
}
.portfolio-card:hover .portfolio-card-overlay { padding-bottom: 32px; }
.portfolio-card-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
.portfolio-card h4  { color: var(--white); font-size: 1.05rem; }
.portfolio-card p   { color: rgba(255,255,255,0.65); font-size: 0.83rem; margin-top: 5px; }
.portfolio-card-num {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 0.95rem; color: var(--gold);
  backdrop-filter: blur(8px);
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cinfo-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.cinfo-card:hover { border-color: var(--border-gold); box-shadow: var(--shadow-gold); }
.cinfo-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; flex-shrink: 0; color: var(--white);
}
.cinfo-icon i { color: var(--white); }
.cinfo-text strong { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 3px; }
.cinfo-text span   { font-size: 0.92rem; color: var(--text-primary); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.form-group { margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-primary);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }

/* Map */
.map-section iframe { display: block; width: 100%; height: 400px; border: none; }

/* ══════════════════════════════════════════
   FOOTER — Dark
══════════════════════════════════════════ */
.site-footer { background: var(--dark); position: relative; overflow: hidden; }
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-top { padding: 72px 0 56px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 56px;
}
.footer-logo { height: 64px; width: auto; margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,0.48); font-size: 0.88rem; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.social-btn i { color: inherit; }
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); transform: translateY(-2px); }
.footer-col h5 { color: var(--white); font-size: 0.98rem; margin-bottom: 22px; padding-bottom: 10px; border-bottom: 1px solid rgba(212,175,55,0.2); }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  color: rgba(255,255,255,0.48);
  font-size: 0.87rem;
  transition: var(--transition);
  display: flex; align-items: center; gap: 9px;
}
.footer-links a .fa-chevron-right { font-size: 0.62rem; color: var(--gold); transition: transform 0.2s; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-links a:hover .fa-chevron-right { transform: translateX(3px); }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 11px; align-items: flex-start; }
.fc-icon { color: var(--gold); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; width: 16px; text-align: center; }
.fc-icon i { color: var(--gold); }
.footer-contact-item span { color: rgba(255,255,255,0.48); font-size: 0.85rem; line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); margin: 0; }
.footer-bottom span { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.68s ease, transform 0.68s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-36px); transition: opacity 0.68s ease, transform 0.68s ease; }
.reveal-left.visible  { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.68s ease, transform 0.68s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ── Back to Top ── */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--white); cursor: pointer;
  box-shadow: var(--shadow-gold); border: none;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition); z-index: 999;
}
.back-to-top i { color: var(--white); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(212,175,55,0.5); }

/* ── Gold Shimmer ── */
.gold-shimmer {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}
@keyframes shimmer { from { background-position: 0% center; } to { background-position: 200% center; } }

/* ── Process steps ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --container-pad: 32px; }
  .about-grid, .why-grid, .owner-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-logo-top { width: 100px; }
}
@media (max-width: 768px) {
  :root { --container-pad: 20px; }
  .nav-menu {
    position: absolute; top: 0; right: 0;
    width: 100%; height: 100vh;
    background: rgba(255,255,255,0.98);
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    gap: 20px; z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { font-size: 1.1rem; color: var(--text-primary); }
  .hamburger { display: flex; z-index: 1001; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 30px 22px; }
  .section { padding: 68px 0; }
  .about-pillars { grid-template-columns: repeat(3, 1fr); }
  .hero-stats { gap: 20px; }
  .hero-logo-top { width: 80px; }
  .hero-title { font-size: 2.2rem; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  :root { --container-pad: 16px; }
  .stats-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .about-logo-card { padding: 28px; }
  .process-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   GLOBAL DESCRIPTION TEXT STANDARDIZATION
══════════════════════════════════════════ */
.service-card p, 
.why-item-text p, 
.why-big-card p, 
.value-card p, 
.mv-card p, 
.portfolio-card p, 
.process-card p,
.cinfo-text span,
.footer-brand p,
.footer-contact-item span {
  font-family: var(--font-body) !important;
  font-size: 1.08rem !important;
  line-height: 1.65 !important;
}
