/* ============================================================
   WEB BAZAARIO — style.css
   Main stylesheet — Bootstrap 5 + Custom Premium Design
   ============================================================ */

/* ─── CSS VARIABLES ─── */
:root {
  --gold:        #F5A800;
  --gold-light:  #FFD060;
  --gold-dark:   #C98A00;
  --black:       #0A0A0A;
  --black2:      #111111;
  --black3:      #1A1A1A;
  --black4:      #222222;
  --white:       #FFFFFF;
  --gray:        #888888;
  --gray-light:  #CCCCCC;

  /* ── Layout heights (used by JS too via CSS vars) ── */
  --topbar-h:  38px;
  --navbar-h:  72px;
  --header-h:  110px;   /* topbar + navbar combined */
  --marquee-h: 52px;
  --theme-font: "Outfit", sans-serif;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }

body {
  background-color: var(--black);
  color: var(--white);
  /* font-family: 'Barlow', sans-serif; */
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  /* Push body content below fixed header */
  padding-top: var(--header-h);
}

h1, h2, h3, h4, h5, .display-font {
  /* font-family: 'Bebas Neue', sans-serif; */
  font-family: var(--theme-font);
  letter-spacing: 0.04em;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ============================================================
   PRELOADER
   ============================================================ */
   #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: #000;
    z-index: 99999;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/*Spinner Wrapper (important for centering logo) */
.loader-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
}

/* Spinner circle */
.loader {
    width: 100%;
    height: 100%;
    border: 4px solid #777;
    border-top: 4px solid #d4a017;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/*Logo EXACT center me */
.loader-wrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
}

/*LOADING TEXT */
.loadText {
    margin-top: 40px;
    display: flex;
    gap: 10px;
}

/* Letters */
.loadText span {
    font-size: 60px;
    font-weight: 900;
    color: #fff;
    display: inline-block;

    /* reflection effect */
    position: relative;
}

/* GOLD alternate */
.loadText span:nth-child(even) {
    color: #d4a017;
}

/*Reflection (shadow below text) */
.loadText span::after {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    color: inherit;
    opacity: 0.25;
    transform: scaleY(-1);
    filter: blur(2px);
}

/*Sequential Animation (one by one) */
.loadText span {
    animation: jump 1.4s infinite;
}

/* Delay (important part) */
.loadText span:nth-child(1) { animation-delay: 0s; }
.loadText span:nth-child(2) { animation-delay: 0.2s; }
.loadText span:nth-child(3) { animation-delay: 0.4s; }
.loadText span:nth-child(4) { animation-delay: 0.6s; }
.loadText span:nth-child(5) { animation-delay: 0.8s; }
.loadText span:nth-child(6) { animation-delay: 1s; }
.loadText span:nth-child(7) { animation-delay: 1.2s; }

/* Animation */
@keyframes jump {
    0%   { transform: translateY(0); }
    20%  { transform: translateY(-25px); }
    40%  { transform: translateY(0); }
    100% { transform: translateY(0); }
}

/* Spinner */
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
/* ============================================================
   TOP ANNOUNCEMENT BAR
   ============================================================ */
#topBar {
  background: linear-gradient(90deg, #1A1100 0%, #0D0800 40%, #1A1100 100%);
  border-bottom: 1px solid rgba(245,168,0,0.25);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1002;           /* Highest — above navbar */
  font-size: 0.8rem;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

#topBar.wb-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-light);
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.topbar-badge {
  background: var(--gold);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 2px 10px;
  border-radius: 100px;
  flex-shrink: 0;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.topbar-right a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.topbar-right a:hover { color: var(--gold-light); }

#closeTopBar {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}
#closeTopBar:hover { color: var(--white); }

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245,168,0,0.15);
  height: var(--navbar-h);
  position: fixed;
  width: 100%;
  /* Default: sits right below the topbar */
  top: var(--topbar-h);
  z-index: 1001;
  transition: top 0.4s ease, border-color 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
}

/* When topbar is closed, navbar moves to top */
#mainNav.no-topbar {
  top: 0;
}

/* Scrolled state */
#mainNav.scrolled {
  border-bottom-color: rgba(245,168,0,0.4);
  box-shadow: 0 4px 30px rgba(245,168,0,0.1);
}

/* ─── LOGO ─── */
.navbar-brand img {
  height: 48px;
  border-radius: 50%;
  filter: drop-shadow(0 0 8px rgba(245,168,0,0.4));
  box-shadow: 0px 0px 6px 6px rgba(245,168,0,0.4);
}

/* ─── BRAND TEXT ─── */
.brand-text-block { line-height: 1.2; }

.brand-name-text {
  font-family: var(--theme-font);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}

.brand-slogan {
  font-family: var(--theme-font);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
}

.slogan-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

/* ─── NAV LINKS ─── */
.nav-link {
  color: var(--gray-light) !important;
  font-family: var(--theme-font);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px !important;
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover            { color: var(--gold) !important; }
.nav-link:hover::after     { transform: scaleX(1); }
.nav-link.wb-active        { color: var(--gold) !important; }
.nav-link.wb-active::after { transform: scaleX(1); }

.service-nav-item {
  position: relative;
}

.service-nav-combo {
  display: flex;
  align-items: center;
}

.service-nav-link {
  padding-right: 8px !important;
}

.service-nav-toggle {
  background: transparent;
  border: 0;
  color: var(--gray-light);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.service-nav-toggle:hover,
.service-nav-item.show .service-nav-toggle,
.service-nav-toggle[aria-expanded="true"] {
  color: var(--gold);
  background: rgba(245,168,0,0.08);
}

.service-nav-toggle i {
  font-size: 0.78rem;
}

.service-nav-item.show .service-nav-toggle i,
.service-nav-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

/* ─── PHONE LINK ─── */
.nav-phone {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray) !important;
  text-decoration: none;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 7px 14px;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-phone:hover {
  color: var(--gold) !important;
  border-color: rgba(245,168,0,0.35);
}
.nav-phone i { color: var(--gold); }

/* ─── BUTTONS ─── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-gold:hover::before { opacity: 1; }
.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245,168,0,0.35);
  color: var(--black);
}
.btn-gold span { 
  position: relative; 
  z-index: 1; 
  display: block;
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  padding: 10px 24px;
  border-radius: 50px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 8px 24px rgba(245,168,0,0.3);
  transform: translateY(-1px);
}

/* ─── MOBILE TOGGLER ─── */
.navbar-toggler {
  border: 1px solid rgba(245,168,0,0.4);
  padding: 6px 10px;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28245,168,0,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(245, 168, 0, 0.18);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  min-height: calc(100svh - var(--header-h) - var(--marquee-h));
  background: var(--black);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* No padding-top needed — body padding-top handles it */
  padding-top: clamp(20px, 3vh, 40px);
  padding-bottom: clamp(20px, 4vh, 48px);
}

#hero .container-xl {
  position: relative;
  z-index: 1;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,168,0,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,168,0,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,168,0,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-2 {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,168,0,0.08) 0%, transparent 70%);
  bottom: 10%; right: 10%;
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,168,0,0.1);
  border: 1px solid rgba(245,168,0,0.3);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.hero-tag .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(3.25rem, 6.8vw, 6.1rem);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 6px;
}

.hero-title .gold-text { color: var(--gold); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 300;
  color: var(--gray);
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 26px;
}

#hero .btn.btn-lg {
  padding: 0.9rem 1.65rem;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-item .stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-logo-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-visual img {
  width: 100%;
  max-width: min(100%, 380px);
  filter: drop-shadow(0 0 40px rgba(245,168,0,0.3)) drop-shadow(0 0 80px rgba(245,168,0,0.15));
  animation: floatLogo 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,168,0,0.15);
  animation: ringPulse 3s ease-in-out infinite;
}
.hero-ring:nth-child(1) { width: 420px; height: 420px; animation-delay: 0s; }
.hero-ring:nth-child(2) { width: 510px; height: 510px; animation-delay: 0.5s; border-style: dashed; }
.hero-ring:nth-child(3) { width: 600px; height: 600px; animation-delay: 1s; }

/* ============================================================
   SECTION COMMON STYLES
   ============================================================ */
section { padding: 100px 0; }

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--gray);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 560px;
}

.section-desc-bottom {
  margin-top: auto;
  padding-top: 32px;
}

.gold-divider {
  width: 48px; height: 2px;
  background: var(--gold);
  margin-bottom: 32px;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-section {
  background: var(--gold);
  min-height: var(--marquee-h);
  padding: 12px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  color: var(--black);
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.marquee-item::after { content: '◆'; font-size: 0.5rem; }

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: var(--black2); }

.service-card {
  background: var(--black3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 36px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(245,168,0,0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover {
  border-color: rgba(245,168,0,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after  { opacity: 1; }

.service-icon {
  width: 56px; height: 56px;
  background: rgba(245,168,0,0.1);
  border: 1px solid rgba(245,168,0,0.2);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 24px;
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: rgba(245,168,0,0.2);
  border-color: rgba(245,168,0,0.5);
}
.service-card > * { position: relative; z-index: 1; }
.service-card h4 { font-size: 1.4rem; color: var(--white); margin-bottom: 12px; }
.service-card p  { font-size: 0.9rem; color: var(--gray); line-height: 1.7; font-weight: 300; order: 1; }
.service-card .btn-outline-gold { margin-top: auto; align-self: flex-start; order: 2; }

.service-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: rgba(245,168,0,0.06);
  line-height: 1;
}

/* ============================================================
   WHY US
   ============================================================ */
#whyus { background: var(--black); }

.why-item {
  display: flex; gap: 20px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
  margin-bottom: 16px;
  transition: all 0.3s;
}
.why-item:hover {
  border-color: rgba(245,168,0,0.25);
  background: rgba(245,168,0,0.03);
}
.why-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(245,168,0,0.1);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold);
}
.why-content h5 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700; font-size: 1rem;
  color: var(--white); margin-bottom: 6px;
}
.why-content p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; margin: 0; }

.big-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,168,0,0.2);
  display: block;
}

/* ============================================================
   PROCESS
   ============================================================ */
#process { 
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
 }

 .process-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.85);
  z-index: 0;
 }

 #process .container { position: relative; z-index: 1; }

.process-step { text-align: center; padding: 32px 20px; position: relative; }
.process-step::after {
  content: '';
  position: absolute;
  top: 62px;
  left: calc(50% + 44px);
  width: calc(100% - 88px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.process-step:last-child::after { display: none; }

.step-num {
  width: 60px; height: 60px;
  border: 1px solid rgba(245,168,0,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; color: var(--gold);
  margin: 0 auto 20px;
  background: rgba(245,168,0,0.06);
  position: relative; z-index: 1;
  transition: all 0.3s;
}
.process-step:hover .step-num {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 0 30px rgba(245,168,0,0.3);
}
.process-step h5 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  color: var(--white); margin-bottom: 8px;
}
.process-step p { font-size: 0.8rem; color: var(--gray); line-height: 1.6; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
#portfolio { background: var(--black); }

.portfolio-filter .btn {
  font-family: 'Barlow', sans-serif;
  font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 20px; border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray); background: transparent;
  margin: 4px; transition: all 0.3s;
}
.portfolio-filter .btn:hover,
.portfolio-filter .btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.portfolio-card {
  background: var(--black3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px; overflow: hidden;
  transition: all 0.4s; height: 100%;
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  border-color: rgba(245,168,0,0.3);
}
.portfolio-img {
  height: 200px;
  background: var(--black4);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.portfolio-img-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem; letter-spacing: 0.1em;
  color: rgba(245,168,0,0.4);
  transition: all 0.4s;
}
.portfolio-card:hover .portfolio-img-inner { color: rgba(245,168,0,0.8); }

.portfolio-overlay {
  position: absolute; inset: 0;
  background: rgba(245,168,0,0.9);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay a {
  color: var(--black); font-size: 1.5rem;
  margin: 0 8px; transition: transform 0.2s;
  text-decoration: none;
}
.portfolio-overlay a:hover { transform: scale(1.2); }

.portfolio-body  { padding: 20px; }
.portfolio-tag   { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.portfolio-body h5 { font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 1rem; color: var(--white); margin: 0; }

/* ============================================================
   PRICING
   ============================================================ */
#pricing { background: linear-gradient(135deg, var(--black2) 0%, var(--black) 100%); }

.pricing-card {
  background: linear-gradient(145deg, var(--black3) 0%, rgba(26,26,26,0.9) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 40px 32px;
  height: 100%; position: relative; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}
.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(245,168,0,0.1) 0%, transparent 50%, rgba(245,168,0,0.05) 100%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
}
.pricing-card.featured {
  background: linear-gradient(160deg, #1A1500 0%, #0D0A00 100%);
  border-color: rgba(245,168,0,0.4);
  box-shadow: 0 0 60px rgba(245,168,0,0.08), 0 0 0 1px rgba(245,168,0,0.2);
}
.pricing-card:hover { transform: translateY(-12px); box-shadow: 0 24px 48px rgba(0,0,0,0.5), 0 0 32px rgba(245,168,0,0.15); }
.pricing-card.featured:hover { box-shadow: 0 24px 48px rgba(245,168,0,0.3), 0 0 40px rgba(245,168,0,0.3); }

.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: var(--black);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 20px; border-radius: 20px; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(245,168,0,0.3);
}
.pricing-name   { font-family: var(--theme-font); font-size: 1.8rem; color: var(--white); margin-bottom: 4px; text-align: center; }
.pricing-desc   { font-size: 0.9rem; color: var(--gray); margin-bottom: 24px; text-align: center; }
.pricing-price  { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.08); text-align: center; }

.pricing-price .amount   { font-family: var(--theme-font); font-size: 2.2rem; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.pricing-price .amount .currency { font-size: 1.2rem; vertical-align: super; color: var(--gold-dark); margin-right: 2px; }
.pricing-price .period   { font-size: 0.8rem; color: var(--gray); display: block; margin-bottom: 8px; }
.pricing-note { display: block; font-size: 0.7rem; color: var(--gray-light); font-style: italic; }

.pricing-features { list-style: none; padding: 0; margin: 0 0 32px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.85rem; color: var(--gray-light);
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li i  { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; margin-top: 2px; }
.pricing-features li.disabled { color: rgba(136,136,136,0.4); text-decoration: line-through; }
.pricing-features li.disabled i { color: rgba(136,136,136,0.3); }

/* Pricing Trust Section */
.pricing-trust {
  background: linear-gradient(135deg, rgba(245,168,0,0.05) 0%, rgba(245,168,0,0.02) 100%);
  border: 1px solid rgba(245,168,0,0.1);
  border-radius: 16px;
  padding: 40px 32px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.pricing-trust h3 {
  font-family: var(--theme-font);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 12px;
}
.pricing-trust p {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: var(--black); }

.testimonial-slider { margin-top: 8px; }
.testimonial-slide { height: 100%; }
.testimonial-slider .owl-stage { display: flex; }
.testimonial-slider .owl-item { display: flex; height: auto; }
.testimonial-slider .owl-item .testimonial-slide { width: 100%; }
.testimonial-slider .owl-dots { margin-top: 28px; text-align: center; }
.testimonial-slider .owl-dot span {
  width: 10px; height: 10px; margin: 0 6px;
  background: rgba(255,255,255,0.18) !important;
  transition: all 0.3s ease;
}
.testimonial-slider .owl-dot.active span,
.testimonial-slider .owl-dot:hover span {
  width: 30px;
  background: var(--gold) !important;
}

.testimonial-card {
  background: var(--black3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px; padding: 32px; height: 100%;
  position: relative; transition: all 0.3s;
  display: flex; flex-direction: column;
}
.testimonial-card:hover { border-color: rgba(245,168,0,0.2); transform: translateY(-4px); }

.quote-icon { font-size: 3rem; line-height: 1; color: rgba(245,168,0,0.2); font-family: Georgia, serif; display: block; margin-bottom: 16px; }
.testimonial-text { font-size: 0.9rem; color: var(--gray-light); line-height: 1.8; font-style: italic; font-weight: 300; margin-bottom: 24px; flex-grow: 1; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: var(--black); flex-shrink: 0;
}
.author-name  { font-weight: 700; font-size: 0.9rem; color: var(--white); }
.author-role  { font-size: 0.75rem; color: var(--gray); }
.stars        { color: var(--gold); font-size: 0.75rem; margin-bottom: 12px; }

@media (max-width: 575.98px) {
  .testimonial-card { padding: 24px; }
}

/* ============================================================
   FAQ
   ============================================================ */
#faq {
  background:
    radial-gradient(circle at top right, rgba(245,168,0,0.1), transparent 30%),
    linear-gradient(180deg, var(--black2) 0%, var(--black) 100%);
}

.faq-shell {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(245,168,0,0.12);
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.28);
}

.faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-accordion .accordion-button {
  background: transparent;
  color: var(--white);
  font-family: var(--theme-font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 24px 20px;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: rgba(245,168,0,0.05);
  color: var(--gold-light);
}

.faq-accordion .accordion-button:focus {
  box-shadow: inset 0 0 0 1px rgba(245,168,0,0.35);
}

.faq-accordion .accordion-button::after {
  filter: brightness(0) saturate(100%) invert(73%) sepia(72%) saturate(1137%) hue-rotate(3deg) brightness(101%) contrast(102%);
}

.faq-accordion .accordion-body {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.8;
  padding: 0 20px 24px;
  max-width: 960px;
}

@media (max-width: 767.98px) {
  .faq-shell {
    padding: 10px;
  }

  .faq-accordion .accordion-button {
    font-size: 0.94rem;
    padding: 20px 16px;
  }

  .faq-accordion .accordion-body {
    font-size: 0.9rem;
    padding: 0 16px 20px;
  }
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--black2); }

.contact-box {
  background: var(--black3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px; padding: 48px 40px;
}
.form-control, .form-select {
  background: var(--black4);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white); border-radius: 2px;
  padding: 12px 16px;
  font-family: 'Barlow', sans-serif; font-size: 0.9rem;
  transition: all 0.3s;
}
.form-control:focus, .form-select:focus {
  background: var(--black4); border-color: var(--gold);
  color: var(--white); box-shadow: 0 0 0 3px rgba(245,168,0,0.1);
}
.form-control::placeholder { color: rgba(136,136,136,0.6); }
.footer-contact-info a {
  color: var(--gray);
  text-decoration: none;
}
.footer-contact-info a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}
.contact-info-value a,
.contact-detail-value a,
.contact-email-list a {
  color: var(--gold);
  text-decoration: none;
}
.contact-info-value a:hover,
.contact-detail-value a:hover,
.contact-email-list a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}
.form-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
textarea.form-control { resize: none; }

/* Form Validation Styles */
.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.05);
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.error-message {
  color: #ff6b6b;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 6px;
  display: block;
  letter-spacing: 0.02em;
}

#wbsuccessPopup {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%) translateY(120%);
  z-index: 9999;
  width: min(380px, calc(100% - 32px));
  background: rgba(10, 10, 10, 0.96);
  border: 1px solid rgba(245, 168, 0, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border-radius: 16px;
  padding: 20px 22px;
  color: var(--white);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

#wbsuccessPopup.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

#wbsuccessPopup .popup-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

#wbsuccessPopup .popup-message {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.5;
}

#wbsuccessPopup .popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 24px;
  height: 24px;
  color: var(--gray);
  cursor: pointer;
  display: grid;
  place-items: center;
}

#wbsuccessPopup .popup-close:hover {
  color: var(--white);
}

.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(245,168,0,0.1); border: 1px solid rgba(245,168,0,0.2);
  border-radius: 4px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
}
.contact-info-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.contact-info-value { font-size: 0.9rem; color: var(--white); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--black2);
  border-top: 1px solid rgba(245,168,0,0.15);
  padding: 60px 0 30px;
}
.footer-brand img { 
    height: 52px; 
    margin-bottom: 16px; 
    border-radius: 50%;
    filter: drop-shadow(0 0 8px rgba(245,168,0,0.4));
    box-shadow: 0px 0px 6px 6px rgba(245,168,0,0.4);
}
.footer-tagline { font-size: 0.8rem; color: var(--gray); font-weight: 300; margin-bottom: 20px; max-width: 260px; }

.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 4px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gray); text-decoration: none; font-size: 0.9rem;
  margin-right: 8px; transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(245,168,0,0.08); }

.footer-heading { font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { text-decoration: none; font-size: 0.85rem; color: var(--gray); transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }

.footer-contact-info { font-size: 0.85rem; color: var(--gray); line-height: 2; }
.footer-contact-info i { color: var(--gold); }

.footer-bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--gray); margin: 0; }
.footer-bottom span { color: var(--gold); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#backToTop {
  position: fixed; bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--gold); color: var(--black);
  border: none; border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer;
  opacity: 0; transform: translateY(10px);
  transition: all 0.3s; z-index: 999;
}
#backToTop.show { opacity: 1; transform: translateY(0); }
#backToTop:hover { background: var(--gold-light); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

.fade-up-delay-01 { transition-delay: 0.1s; }
.fade-up-delay-02 { transition-delay: 0.2s; }
.fade-up-delay-03 { transition-delay: 0.3s; }
.fade-up-delay-04 { transition-delay: 0.4s; }
.fade-up-delay-05 { transition-delay: 0.15s; } /* 0.15s */
.fade-up-delay-06 { transition-delay: 0.25s; }
.fade-up-delay-07 { transition-delay: 0.35s; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(1.02); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 991.98px) {
  :root { --topbar-h: 38px; --navbar-h: 60px; --header-h: 98px; }
  #hero {
    min-height: auto;
    padding-top: 32px;
    padding-bottom: 40px;
  }
  .hero-logo-visual {
    min-height: 280px;
  }
  .topbar-left span { font-size: 0.72rem; }
}
@media (max-width: 575.98px) {
  :root { --marquee-h: 46px; }
  .topbar-left span { display: none; }
  .topbar-left .topbar-badge { margin-left: auto; }
  .hero-title { font-size: clamp(2.8rem, 16vw, 4.2rem); }
  .hero-subtitle { margin-bottom: 20px; }
  #hero .btn.btn-lg { width: 100%; }
  .hero-stats { gap: 20px; margin-top: 24px; padding-top: 20px; }
  .hero-logo-visual img { max-width: min(100%, 290px); }
  .contact-box { padding: 28px 20px; }
}

@media (min-width: 992px) and (max-height: 900px) {
  #hero {
    padding-top: 18px;
    padding-bottom: 10px;
  }
  .hero-title {
    font-size: clamp(3rem, 6vw, 5.4rem);
  }
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 22px;
  }
  .hero-stats {
    gap: 24px;
    margin-top: 24px;
    padding-top: 20px;
  }
  .stat-item .stat-num {
    font-size: 2.15rem;
  }
  .hero-logo-visual img {
    max-width: min(100%, 330px);
  }
  .hero-ring:nth-child(1) { width: 360px; height: 360px; }
  .hero-ring:nth-child(2) { width: 430px; height: 430px; }
  .hero-ring:nth-child(3) { width: 500px; height: 500px; }
}

body.topbar-closed {
  padding-top: var(--navbar-h);
}

.dropdown-menu.service-dropdown-menu {
  background: rgba(17, 17, 17, 0.98);
  border: 1px solid rgba(245, 168, 0, 0.18);
  border-radius: 8px;
  padding: 0.5rem;
  min-width: 280px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.dropdown-menu.service-dropdown-menu .dropdown-item {
  color: var(--gray-light);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.8rem 0.95rem;
  border-radius: 6px;
}

.dropdown-menu.service-dropdown-menu .dropdown-item:hover,
.dropdown-menu.service-dropdown-menu .dropdown-item:focus,
.dropdown-menu.service-dropdown-menu .dropdown-item.wb-active {
  color: var(--gold);
  background: rgba(245, 168, 0, 0.1);
}

.footer-links a.wb-active {
  color: var(--gold);
}

.floating-social-rail {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-social-rail a {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  border: 1px solid rgba(245, 168, 0, 0.16);
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.floating-social-rail a:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(245, 168, 0, 0.35);
    color: var(--black);
}

.content-image-card {
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.content-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.08), rgba(10, 10, 10, 0.42));
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.section-shell {
  position: relative;
  padding: 80px 0;
}

.section-soft {
  background: var(--black2);
}

.page-hero {
  min-height: 250px;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  background-color: var(--black);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom: 2px solid var(--gold);
}

.contact-hero {
  min-height: 250px;
  height: 250px;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  background-color: var(--black);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(245, 168, 0, 0.18);
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.74) 44%, rgba(10, 10, 10, 0.55) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.18), rgba(10, 10, 10, 0.52));
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 35%, rgba(245, 168, 0, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 36%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.88) 0%, rgba(10, 10, 10, 0.74) 44%, rgba(10, 10, 10, 0.55) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.18), rgba(10, 10, 10, 0.52));
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 35%, rgba(245, 168, 0, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 36%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.page-hero-shell {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between;s */
  min-height: inherit;
  width: 100%;
  /* padding: 44px 0 56px; */
}

.breadcrumb-section {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  /* height: 250px;s */
  width: 100%;
  padding: 10px 0;
}

.page-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px 0;
  gap: 0.5rem;
}

.breadcrumb-section .page-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0;
  gap: 0.5rem;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.page-breadcrumb .separator {
  color: rgba(245, 168, 0, 0.72);
}

.page-breadcrumb .current {
  color: var(--white);
}

.page-hero .hero-title {
    /* max-width: 800px; */
    margin: 0 auto 20px;
    text-align: center;

    font-size: clamp(2.5rem, 4.5vw, 3.5rem); /* controlled size */
    font-weight: 700;

    line-height: 1.2; /* readable & premium */
    letter-spacing: -0.5px; /* modern feel */
    margin-bottom: 1rem;
}

/* .page-hero .hero-title {
  text-align: center;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.98;
  margin-bottom: 1rem;
} */

.page-copy {
  text-align: center;
  /* max-width: 760px; */
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.8;
}

.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 1.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 1rem;
}

.breadcrumb-section .eyebrow {
    font-size: 1.5rem;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.hero-orb {
  position: absolute;
  inset: auto;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.orb-one {
  width: 420px;
  height: 420px;
  right: -60px;
  top: 30px;
  background: radial-gradient(circle, rgba(245, 168, 0, 0.22), transparent 70%);
}

.orb-two {
  width: 320px;
  height: 320px;
  left: -40px;
  top: 80px;
  background: radial-gradient(circle, rgba(245, 168, 0, 0.14), transparent 70%);
}

.page-panel,
.contact-card,
.feature-card,
.detail-card,
.sidebar-panel,
.work-card,
.blog-card,
.blog-hero-card,
.info-strip {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.96), rgba(12, 12, 12, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 32px;
  height: 100%;
}

.page-panel h3,
.contact-copy h3,
.detail-card h3,
.blog-card h3,
.work-card h3,
.blog-article h2 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 0.9rem;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
}

.section-heading p,
.page-panel p,
.feature-card p,
.contact-copy p,
.detail-card p,
.work-card p,
.blog-card p,
.blog-article p,
.info-strip p {
  color: var(--gray-light);
  line-height: 1.8;
}

.feature-card,
.work-card,
.blog-card {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.work-card:hover,
.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 168, 0, 0.28);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.check-list,
.service-points,
.blog-article ul {
  padding-left: 1.2rem;
  margin: 0;
  color: var(--gray-light);
}

.check-list li,
.service-points li,
.blog-article ul li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.contact-points {
  display: grid;
  gap: 0.85rem;
  color: var(--gray-light);
}

.contact-points i,
.meta-list i,
.blog-meta i,
.work-meta i {
  color: var(--gold);
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-detail-card {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.96), rgba(12, 12, 12, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 28px;
  min-height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-detail-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 168, 0, 0.28);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.contact-detail-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 1.25rem;
  color: var(--gold);
  background: rgba(245, 168, 0, 0.1);
  border: 1px solid rgba(245, 168, 0, 0.2);
  font-size: 1.2rem;
}

.contact-detail-label {
  color: var(--gray);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.contact-detail-value {
  color: var(--gold);
  font-family: var(--theme-font);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.85rem;
  overflow-wrap: anywhere;
}

.contact-detail-card p {
  color: var(--gray-light);
  margin: 0;
  line-height: 1.75;
}

.form-note {
  color: var(--gray);
  font-size: 0.85rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 1.5rem;
}

.detail-layout .info-strip{
  height: auto;
}

.sidebar-panel {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  align-self: start;
  height: auto;
}

/* .blog-side-nav-shell {
  position: relative;
  z-index: 2;
}

.blog-side-nav {
  margin: 0 auto 1.5rem;
  max-width: 360px;
} */

.side-nav {
  display: grid;
  gap: 0.6rem;
}

.side-nav a {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  color: var(--gray-light);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.25s ease;
}

.side-nav a:hover,
.side-nav a.wb-active {
  color: var(--gold);
  border-color: rgba(245, 168, 0, 0.28);
  background: rgba(245, 168, 0, 0.08);
}

.side-nav small,
.meta-list span,
.blog-meta span,
.work-meta span {
  display: block;
  color: var(--gray);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

.meta-list,
.blog-meta,
.work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-bottom: 1.25rem;
  color: var(--gray-light);
  font-size: 0.92rem;
}

.info-strip {
  margin-top: 1.5rem;
}

.info-strip strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.45rem;
}

.blog-grid-image,
.work-grid-image,
.article-cover {
  min-height: 220px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.article-cover {
  min-height: 500px;
  margin-bottom: 1.5rem;
}

.image-overlay {
  min-height: inherit;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.58));
}

.blog-card .blog-grid-image,
.work-card .work-grid-image {
  margin-bottom: 1.4rem;
  border: 1px solid var(--white);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.tag-list span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(245, 168, 0, 0.08);
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}



.blog-article h2 {
  margin-top: 1.9rem;
}

.blog-article .lead {
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.8;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  background: rgba(245, 168, 0, 0.06);
  border: 1px solid rgba(245, 168, 0, 0.12);
  border-radius: 14px;
  padding: 1.2rem;
}

.stat-card strong {
  display: block;
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.stat-card span {
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

/* Popup styles */ 
.messagePopup .modal-content{
  background: rgba(10, 10, 10, 0.96);
  border: 1px solid rgba(245, 168, 0, 0.25);
  box-shadow: 0 14px 50px rgba(245, 168, 0, 0.25);
  border-radius: 16px;
}

@media (min-width: 1200px) {
  .blog-side-nav-shell {
    height: 0;
  }

  .blog-side-nav {
    height: auto;
    /* position: fixed;
    right: 24px;
    top: calc(var(--header-h) + 34px);
    width: min(330px, calc(100vw - 32px));
    max-height: calc(100vh - var(--header-h) - 56px);
    overflow: auto;
    margin: 0; */
    z-index: 20;
  }

  body[data-page^="blog-"] .container-fluid.px-lg-5 {
    padding-right: 24rem !important;
  }
}

@media (max-width: 991.98px) {
  #mainNav {
    height: auto;
    min-height: var(--navbar-h);
    align-items: flex-start;
    padding: 10px 0;
  }

  #mainNav .container {
    align-items: center;
  }

  .navbar-brand {
    max-width: calc(100% - 72px);
    min-width: 0;
  }

  .navbar-brand img {
    height: 42px;
  }

  .navbar-toggler {
    margin-left: auto;
    flex-shrink: 0;
  }

  .navbar-collapse {
    width: 100%;
    margin-top: 14px;
    padding: 16px;
    background: rgba(17, 17, 17, 0.98);
    border: 1px solid rgba(245, 168, 0, 0.14);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  }

  .navbar-nav {
    align-items: stretch !important;
    gap: 0 !important;
  }

  .nav-link {
    display: block;
    padding: 12px 0 !important;
  }

  .service-nav-combo {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .service-nav-link {
    padding-right: 12px !important;
  }

  .service-nav-toggle {
    width: 42px;
    height: 42px;
    justify-self: end;
  }

  .nav-link::after {
    left: 0;
    right: auto;
    width: 100%;
    bottom: 0;
  }

  .dropdown-menu.service-dropdown-menu {
    position: static !important;
    transform: none !important;
    margin-top: 8px;
    width: 100%;
    box-shadow: none;
  }

  .navbar-collapse > .d-flex {
    width: 100%;
    flex-direction: column;
    align-items: stretch !important;
    gap: 12px !important;
    margin-top: 14px;
  }

  .nav-phone {
    display: flex !important;
    justify-content: center;
  }

  .navbar-collapse .btn-gold {
    width: 100%;
    margin-left: 0 !important;
    text-align: center;
  }

  .page-hero {
    min-height: 250px;
  }

  .contact-hero {
    min-height: 250px;
    height: 250px;
  }

  .page-hero-shell {
    padding: 30px 0 10px;
  }

  .page-hero-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-hero-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .sidebar-panel {
    position: static;
  }

  .dropdown-menu.service-dropdown-menu {
    min-width: 100%;
  }

  .floating-social-rail {
    right: 12px;
  }

  .floating-social-rail a {
    width: 50px;
    height: 50px;
  }

  .section-shell {
    padding: 72px 0;
  }
}

@media (max-width: 767.98px) {
  #topBar {
    display: none;
  }

  #mainNav,
  #mainNav.no-topbar {
    top: 0;
  }

  body,
  body.topbar-closed {
    padding-top: var(--navbar-h);
  }

  .page-hero-top,
  .breadcrumb-section .page-hero-top {
    gap: 0.75rem;
    padding: 0 12px;
  }

  .contact-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-breadcrumb {
    gap: 0.5rem;
  }
}

@media (max-width: 575.98px) {
  .page-panel,
  .contact-card,
  .feature-card,
  .detail-card,
  .sidebar-panel,
  .work-card,
  .blog-card,
  .blog-hero-card,
  .info-strip,
  .blog-article {
    padding: 24px;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 250px;
  }

  .contact-hero {
    min-height: 250px;
    height: 250px;
  }

  .page-copy {
    font-size: 0.98rem;
    padding: 0 12px;
  }

  .page-hero .hero-title {
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 1.15;
    word-break: break-word;
    padding: 0 12px;
    margin-top: 15px;
  }

  .page-breadcrumb {
    font-size: 0.8rem;
  }

  .contact-hero-breadcrumb {
    font-size: 0.85rem;
  }

  .contact-hero-copy {
    font-size: 0.92rem;
  }

  .content-image-card {
    min-height: 300px;
  }

  .eyebrow,
  .breadcrumb-section .eyebrow {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  .page-hero-shell {
    padding-inline: 2px;
  }

  .topbar-left,
  .topbar-right,
  .brand-name-text,
  .brand-slogan,
  .page-copy,
  .page-panel h3,
  .feature-card h3 {
    overflow-wrap: anywhere;
  }

  .floating-social-rail {
    /* top: auto; */
    bottom: 16px;
    transform: none;
    right: 8px;
  }

  .floating-social-rail a {
    width: 46px;
    height: 46px;
  }
}
