/* ============================================
   OLUDOT HOLDING — Global Styles
   holding.css
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange:     #C0950A;
  --white:      #F0EDE4;
  --gray:       #8A8A7E;
  --dark-bg:    #0C0C0A;
  --dark-card:  #111110;
  --dark-card2: #181815;
  --border:     rgba(255, 255, 255, 0.07);
  --border-hover: rgba(192, 149, 10, 0.4);
  --wa-green:   #25D366;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark-bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.olu  { color: var(--orange); }
.dotw { color: var(--white); }

/* ── NAVBAR ───────────────────────────────── */
.h-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 56px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(12, 12, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
}
.h-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.h-nav-brand-name {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 2.5px;
  line-height: 1;
}
.h-nav-brand-sub {
  font-size: 11px;
  color: var(--gray);
  margin-top: 3px;
  letter-spacing: .5px;
}
.h-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.h-nav-links a {
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
  transition: color .25s;
}
.h-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--orange);
  transition: width .3s ease;
}
.h-nav-links a:hover,
.h-nav-links a.active { color: var(--orange); }
.h-nav-links a:hover::after,
.h-nav-links a.active::after { width: 100%; }

/* hamburger (mobile) */
.h-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.h-nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* ── PAGE HERO (companies/contact) ────────── */
.page-hero {
  padding: 72px 56px 56px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  background-color: var(--dark-bg);
  background-image:
    linear-gradient(rgba(192, 149, 10, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 149, 10, 0.07) 1px, transparent 1px),
    radial-gradient(ellipse 70% 120% at 60% 50%, rgba(192, 149, 10, 0.09) 0%, transparent 65%),
    linear-gradient(180deg, rgba(12, 12, 10, 0) 0%, rgba(12, 12, 10, 0.85) 100%);
  background-size: 44px 44px, 44px 44px, 100% 100%, 100% 100%;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--dark-bg));
  pointer-events: none;
}
.page-hero-watermark {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 520px; height: auto;
  opacity: 0.055;
  pointer-events: none;
  user-select: none;
  filter: grayscale(1) brightness(3);
}
.page-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.page-title {
  font-family: 'Lora', serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.page-title em { font-style: italic; color: var(--orange); }
.page-sub {
  font-size: 15px;
  color: var(--gray);
  max-width: 520px;
  line-height: 1.7;
  position: relative; z-index: 1;
}

/* ── FOOTER ───────────────────────────────── */
.h-footer {
  background: #080807;
  padding: 22px 56px;
  display: flex;
  align-items: center;
  gap: 40px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.h-footer-brand {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 2.5px;
}
.h-footer-links {
  display: flex;
  gap: 26px;
  flex: 1;
}
.h-footer-links a {
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
  transition: color .2s;
}
.h-footer-links a:hover { color: var(--orange); }

/* ── FLOATING WHATSAPP ────────────────────── */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 0;
  text-decoration: none;
  filter: drop-shadow(0 4px 16px rgba(37, 211, 102, 0.35));
  transition: filter .3s;
}
.wa-float:hover { filter: drop-shadow(0 6px 24px rgba(37, 211, 102, 0.55)); }
.wa-bubble {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease;
  position: relative;
}
.wa-float:hover .wa-bubble { transform: scale(1.08); }
.wa-bubble::before {
  content: '';
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--wa-green);
  opacity: .4;
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .4; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}
.wa-icon { width: 28px; height: 28px; fill: #fff; position: relative; z-index: 1; }
.wa-label {
  background: #111110;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px 0 0 8px;
  border: 1px solid var(--border);
  border-right: none;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width .35s ease, opacity .3s, padding .3s;
}
.wa-float:hover .wa-label { max-width: 160px; opacity: 1; padding: 8px 14px; }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 900px) {
  .h-nav { padding: 14px 24px; }
  .h-nav-links { display: none; flex-direction: column; gap: 0; }
  .h-nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(12, 12, 10, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
  }
  .h-nav-links.open a { padding: 10px 0; font-size: 15px; }
  .h-nav-toggle { display: flex; }
  .page-hero { padding: 48px 24px 40px; }
  .page-title { font-size: 30px; }
  .page-hero-watermark { width: 340px; }
  .h-footer { flex-wrap: wrap; gap: 14px; padding: 20px 24px; }
  .h-footer-links { flex-wrap: wrap; gap: 14px; }
  .wa-float { bottom: 20px; right: 20px; }
}
@media (max-width: 480px) {
  .h-nav { padding: 12px 16px; }
  .h-nav-brand-name { font-size: 14px; }
  .page-hero { padding: 36px 16px 32px; }
  .page-title { font-size: 24px; }
  .page-hero-watermark { width: 240px; }
  .h-footer { padding: 16px; }
  .wa-bubble { width: 50px; height: 50px; }
  .wa-bubble::before { width: 50px; height: 50px; }
}
