/*
Theme Name:       GBOB Pioneer
Theme URI:        https://gbob.net
Author:           Ali Aamir
Author URI:       https://gbob.net
Description:      Pakistan's #1 Guest Blogging Outreach Business theme — built for GBOB.net by Ali Aamir.
Version:          1.0.0
Requires at least: 6.0
Tested up to:     6.5
Requires PHP:     8.0
License:          GNU General Public License v2 or later
License URI:      https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:      gbob-pioneer
Tags:             one-page, dark, business, marketing, seo, blog, portfolio
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dim:    #8A6C2A;
  --black:       #080B0F;
  --surface:     #0D1117;
  --surface-2:   #131920;
  --surface-3:   #1A2330;
  --border:      rgba(201,168,76,0.18);
  --text:        #E8E4DC;
  --text-muted:  #8A9099;
  --accent-red:  #C0392B;
  --white:       #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-urdu:    'Noto Nastaliq Urdu', serif;

  --radius:      2px;
  --transition:  0.25s ease;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background:    var(--black);
  color:         var(--text);
  font-family:   var(--font-body);
  font-weight:   400;
  line-height:   1.7;
  overflow-x:    hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* 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.85' 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: 9998;
  opacity: 0.55;
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family:   var(--font-display);
  font-weight:   900;
  line-height:   1.1;
  letter-spacing: -0.02em;
  color:         var(--white);
}

.section-label {
  display:       flex;
  align-items:   center;
  gap:           0.8rem;
  font-size:     0.70rem;
  font-weight:   700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color:         var(--gold);
  margin-bottom: 1rem;
}
.section-label::after {
  content:    '';
  display:    block;
  width:      40px;
  height:     1px;
  background: var(--gold);
  opacity:    0.5;
}

.section-heading {
  font-size:   clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.2rem;
}
.section-heading em { font-style: italic; color: var(--gold); }

.section-sub {
  color:       var(--text-muted);
  font-size:   1rem;
  max-width:   540px;
  line-height: 1.8;
}

.gold-divider {
  width:      60px;
  height:     2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin:     1.2rem 0 2rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display:         inline-block;
  background:      var(--gold);
  color:           var(--black);
  font-weight:     700;
  font-size:       0.82rem;
  letter-spacing:  0.1em;
  text-transform:  uppercase;
  padding:         0.9rem 2.2rem;
  border-radius:   var(--radius);
  border:          none;
  cursor:          pointer;
  transition:      background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); color: var(--black); }

.btn-outline {
  display:         inline-block;
  background:      transparent;
  color:           var(--text);
  font-weight:     600;
  font-size:       0.82rem;
  letter-spacing:  0.1em;
  text-transform:  uppercase;
  padding:         0.9rem 2.2rem;
  border-radius:   var(--radius);
  border:          1px solid var(--border);
  cursor:          pointer;
  transition:      border-color var(--transition), color var(--transition), transform var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#gbob-nav {
  position:       fixed;
  top: 0; left: 0; right: 0;
  z-index:        1000;
  display:        flex;
  align-items:    center;
  justify-content: space-between;
  padding:        1.2rem 5vw;
  background:     rgba(8,11,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom:  1px solid var(--border);
  transition:     background 0.3s;
}
#gbob-nav.scrolled { background: rgba(8,11,15,0.98); }

.nav-logo {
  font-family:    var(--font-display);
  font-size:      1.6rem;
  font-weight:    900;
  color:          var(--gold);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--white); }

.nav-links {
  display:    flex;
  gap:        2.2rem;
  align-items: center;
}
.nav-links a {
  font-size:      0.80rem;
  font-weight:    600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:          var(--text-muted);
  transition:     color var(--transition);
}
.nav-links a:hover  { color: var(--gold); }
.nav-links .nav-cta {
  background:    var(--gold);
  color:         var(--black) !important;
  padding:       0.55rem 1.4rem;
  border-radius: var(--radius);
  font-weight:   700 !important;
}
.nav-links .nav-cta:hover { background: var(--gold-light); color: var(--black) !important; }

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

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position:    relative;
  min-height:  100vh;
  display:     flex;
  align-items: center;
  overflow:    hidden;
  width:       100%;
  margin-top:  0;
  padding-top: 0;
}

/* Hero background — radial gold glow, image via <img> tag */
.hero-bg {
  position:   absolute;
  inset:      0;
  z-index:    0;
  overflow:   hidden;
  background: var(--black);
  /* Subtle gold glow top-right */
  background-image: radial-gradient(
    ellipse at 75% 40%,
    rgba(201,168,76,0.06) 0%,
    transparent 60%
  );
}

/* Dark gradient overlay — keeps left content readable */
.hero-bg::before {
  content:    '';
  position:   absolute;
  inset:      0;
  z-index:    2;
  /* Multi-layer overlay — MusabWorld style */
  background:
    linear-gradient(
      to bottom,
      rgba(8,11,15,0.55) 0%,
      rgba(8,11,15,0.45) 40%,
      rgba(8,11,15,0.70) 100%
    ),
    linear-gradient(
      to right,
      rgba(8,11,15,0.92) 0%,
      rgba(8,11,15,0.75) 40%,
      rgba(8,11,15,0.30) 70%,
      rgba(8,11,15,0.15) 100%
    );
}

/* Decorative vertical gold line */
.hero-bg::after {
  content:        '';
  position:       absolute;
  top:    0;
  left:   50%;
  transform: translateX(-50%);
  width:  1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--gold)  12%,
    var(--gold)  88%,
    transparent 100%
  );
  opacity:        0.20;
  z-index:        3;
  pointer-events: none;
}

/* Portrait photo — PNG with transparent bg preferred */
.hero-photo {
  position:        absolute;
  top:             0;
  right:           0;            /* flush with right edge — no gap */
  bottom:          0;
  left:            auto;
  width:           52%;
  height:          100%;
  object-fit:      cover;
  object-position: center top;   /* face centered */
  z-index:         1;
  filter:          brightness(0.85) contrast(1.04);
  /* Left-edge fade — same visual weight as 5vw text padding */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent       0%,
    rgba(0,0,0,0.5)  10%,
    rgba(0,0,0,0.9)  22%,
    black            32%,
    black            100%
  );
  mask-image: linear-gradient(
    to right,
    transparent       0%,
    rgba(0,0,0,0.5)  10%,
    rgba(0,0,0,0.9)  22%,
    black            32%,
    black            100%
  );
}

.hero-content {
  position:    relative;
  z-index:     2;
  padding:     110px 5vw 160px;
  padding-left: 5vw;   /* same as screen edge gap on right */
  width:       50%;
  max-width:   680px;
  animation:   heroReveal 1.2s cubic-bezier(0.16,1,0.3,1) both;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display:        flex;
  align-items:    center;
  gap:            0.7rem;
  font-size:      0.68rem;
  font-weight:    700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color:          var(--gold);
  margin-bottom:  1.5rem;
  flex-wrap:      wrap;
  max-width:      420px;
  animation:      heroReveal 1.2s 0.1s cubic-bezier(0.16,1,0.3,1) both;
}
.hero-eyebrow::before {
  flex-shrink: 0;
}
.hero-flag {
  display:        inline-block;
  background:     var(--accent-red);
  color:          var(--white);
  font-size:      0.62rem;
  font-weight:    800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding:        0.22rem 0.6rem;
  border-radius:  1px;
}

.hero-title {
  font-size:      clamp(3.2rem, 5.8vw, 5.4rem);
  margin-bottom:  0.4rem;
  line-height:    1.04;
  letter-spacing: -0.025em;
  color:          var(--white);
  animation:      heroReveal 1.2s 0.2s cubic-bezier(0.16,1,0.3,1) both;
}
/* "Shahzad Ahmad" — always one line */
.hero-title-line1 {
  display:     block;
  white-space: nowrap;
}
/* "Mirza" — gold italic, below */
.hero-title em {
  display:     block;
  font-style:  italic;
  color:       var(--gold);
  white-space: nowrap;
  line-height: 1.1;
}

.hero-subtitle-urdu {
  font-family:   var(--font-urdu);
  font-size:     clamp(1.1rem, 2.5vw, 1.55rem);
  color:         var(--gold-light);
  direction:     rtl;
  text-align:    left;
  margin:        1rem 0 1.8rem;
  line-height:   2.2;
  animation:     heroReveal 1.2s 0.3s cubic-bezier(0.16,1,0.3,1) both;
}

.hero-desc {
  font-size:     1.05rem;
  color:         var(--text-muted);
  max-width:     520px;
  margin-bottom: 2.2rem;
  line-height:   1.8;
  animation:     heroReveal 1.2s 0.4s cubic-bezier(0.16,1,0.3,1) both;
}

.hero-actions {
  display:   flex;
  gap:       1rem;
  flex-wrap: wrap;
  animation: heroReveal 1.2s 0.5s cubic-bezier(0.16,1,0.3,1) both;
}

.hero-stats {
  position:        absolute;
  bottom: 0; left: 0; right: 0;
  z-index:         2;
  display:         flex;
  gap:             0;
  border-top:      1px solid rgba(201,168,76,0.15);
  background:      rgba(8,11,15,0.6);
  backdrop-filter: blur(10px);
  animation:       heroReveal 1.2s 0.7s cubic-bezier(0.16,1,0.3,1) both;
}
.stat-item {
  flex:         1;
  padding:      1.4rem 5vw;
  border-right: 1px solid rgba(201,168,76,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size:   2rem;
  font-weight: 900;
  color:       var(--gold);
  line-height: 1;
}
.stat-label {
  font-size:      0.70rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:          var(--text-muted);
  margin-top:     0.25rem;
}

/* Scroll hint hidden — caused bracket artifact on desktop */
.scroll-hint { display: none; }

/* ============================================================
   TRUST BADGES
   ============================================================ */
#trust {
  background:    var(--surface-2);
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding:       2.6rem 5vw;
}
.trust-label {
  text-align:     center;
  font-size:      0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color:          var(--text-muted);
  margin-bottom:  1.8rem;
}
.trust-track {
  display:         flex;
  gap:             1.2rem;
  align-items:     center;
  justify-content: center;
  flex-wrap:       wrap;
}
.trust-badge {
  display:     flex;
  align-items: center;
  gap:         0.7rem;
  padding:     0.65rem 1.3rem;
  border:      1px solid var(--border);
  border-radius: var(--radius);
  background:  var(--surface);
  white-space: nowrap;
  transition:  border-color var(--transition);
}
.trust-badge:hover { border-color: var(--gold); }
.trust-badge-icon  { font-size: 1.05rem; }
.trust-badge-text  { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); }
.trust-badge-text strong { color: var(--gold); }

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  background:    var(--surface);
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding:       6rem 5vw;
}
.about-grid {
  display:     grid;
  grid-template-columns: 1fr 1fr;
  gap:         5rem;
  align-items: center;
  max-width:   1200px;
  margin:      0 auto;
}
.about-portrait-wrap { position: relative; }
.about-portrait {
  width:   100%;
  aspect-ratio: 4/5;
  object-fit:   cover;
  border-radius: var(--radius);
  filter:  grayscale(15%) contrast(1.05);
}
.portrait-placeholder {
  width:        100%;
  aspect-ratio: 4/5;
  background:   var(--surface-3);
  border:       1px dashed var(--border);
  border-radius: var(--radius);
  display:      flex;
  flex-direction: column;
  align-items:  center;
  justify-content: center;
  gap:          1rem;
  color:        var(--text-muted);
  font-size:    0.85rem;
  text-align:   center;
}
.about-portrait-frame {
  position: absolute;
  inset:    -12px;
  border:   1px solid var(--border);
  border-radius: var(--radius);
  pointer-events: none;
}
.about-badge {
  position:        absolute;
  bottom: -1.5rem; right: -1.5rem;
  background:      var(--gold);
  color:           var(--black);
  width:  110px; height: 110px;
  border-radius:   50%;
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  justify-content: center;
  text-align:      center;
  font-weight:     800;
  box-shadow:      0 0 40px rgba(201,168,76,0.3);
}
.about-badge .badge-num {
  font-family: var(--font-display);
  font-size:   1.8rem;
  line-height: 1;
}
.about-badge .badge-text {
  font-size:      0.55rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height:    1.3;
  margin-top:     0.15rem;
}
.about-intro {
  font-size:     1.08rem;
  line-height:   1.9;
  margin-bottom: 1.8rem;
}
.about-urdu {
  font-family:  var(--font-urdu);
  direction:    rtl;
  font-size:    1.05rem;
  color:        var(--gold-light);
  line-height:  2.2;
  margin-bottom: 2rem;
  padding:      1rem 1.4rem;
  border-right: 3px solid var(--gold);
  background:   rgba(201,168,76,0.04);
}
.about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap:    1rem;
}
.cred-item {
  background:    var(--surface-2);
  border:        1px solid var(--border);
  border-radius: var(--radius);
  padding:       1rem 1.2rem;
  transition:    border-color var(--transition);
}
.cred-item:hover { border-color: var(--gold); }
.cred-icon  { font-size: 1.2rem; margin-bottom: 0.4rem; }
.cred-title { font-weight: 700; font-size: 0.85rem; color: var(--gold); margin-bottom: 0.2rem; }
.cred-desc  { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   WHAT IS GBOB
   ============================================================ */
#what {
  background: var(--black);
  padding:    6rem 5vw;
}
.what-inner      { max-width: 1200px; margin: 0 auto; }
.what-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}
.what-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap:    1.5rem;
}
.what-card {
  background:    var(--surface);
  border:        1px solid var(--border);
  border-radius: var(--radius);
  padding:       2rem 1.5rem;
  position:      relative;
  overflow:      hidden;
  transition:    border-color var(--transition), transform var(--transition);
}
.what-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.what-card::before {
  content:        '';
  position:       absolute;
  top: 0; left: 0; right: 0;
  height:         2px;
  background:     var(--gold);
  transform:      scaleX(0);
  transform-origin: left;
  transition:     transform 0.35s;
}
.what-card:hover::before { transform: scaleX(1); }
.card-num   { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--border); line-height: 1; margin-bottom: 0.8rem; }
.card-title { font-weight: 700; font-size: 1rem; margin-bottom: 0.6rem; }
.card-body  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; }

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  background:    var(--surface);
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding:       6rem 5vw;
}
.services-inner  { max-width: 1200px; margin: 0 auto; }
.services-header { margin-bottom: 3rem; }
.services-list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap:     1.5px;
  border:  1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-item {
  background:  var(--surface-2);
  padding:     2.2rem 2rem;
  display:     flex;
  gap:         1.5rem;
  align-items: flex-start;
  transition:  background var(--transition);
}
.service-item:hover { background: var(--surface-3); }
.service-icon {
  width:  44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display:       flex;
  align-items:   center;
  justify-content: center;
  font-size:     1.2rem;
  flex-shrink:   0;
  transition:    border-color var(--transition);
}
.service-item:hover .service-icon { border-color: var(--gold); }
.service-title { font-weight: 700; font-size: 0.98rem; margin-bottom: 0.4rem; }
.service-desc  { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   JOURNEY TIMELINE
   ============================================================ */
#journey {
  background: var(--black);
  padding:    6rem 5vw;
}
.journey-inner  { max-width: 1200px; margin: 0 auto; }
.journey-header { margin-bottom: 4rem; }
.timeline { position: relative; }
.timeline::before {
  content:    '';
  position:   absolute;
  left:       50%; top: 0; bottom: 0;
  width:      1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 10%, var(--gold) 90%, transparent);
  opacity:    0.25;
  transform:  translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: start;
  margin-bottom: 3rem;
}
.tl-content {
  text-align:   right;
  padding-right: 2.5rem;
  padding-top:   0.3rem;
}
.tl-content.right {
  text-align:  left;
  padding-left: 2.5rem;
  padding-right: 0;
}
.tl-year  {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--gold); margin-bottom: 0.5rem; text-transform: uppercase;
  white-space: nowrap;
}
.tl-title {
  font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem;
  line-height: 1.4; word-break: keep-all;
}
.tl-desc  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; }
.tl-dot-col { display: flex; justify-content: center; padding-top: 0.2rem; }
.tl-dot {
  width: 18px; height: 18px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--black);
  transition: background var(--transition);
}
.timeline-item:hover .tl-dot { background: var(--gold); }

/* ============================================================
   GBOBER APP
   ============================================================ */
#gbober {
  background:    var(--surface);
  border-top:    1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding:       6rem 5vw;
}
.gbober-inner {
  max-width:   1200px;
  margin:      0 auto;
  display:     grid;
  grid-template-columns: 1fr 1fr;
  gap:         5rem;
  align-items: center;
}
.gbober-mockup {
  background:    var(--surface-2);
  border:        1px solid var(--border);
  border-radius: 8px;
  overflow:      hidden;
  box-shadow:    0 40px 80px rgba(0,0,0,0.45);
}
.gbober-mockup-bar {
  background:    var(--surface-3);
  padding:       0.8rem 1rem;
  display:       flex;
  align-items:   center;
  gap:           0.5rem;
  border-bottom: 1px solid var(--border);
}
.mockup-dot        { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot:nth-child(1) { background: #FF5F57; }
.mockup-dot:nth-child(2) { background: #FEBC2E; }
.mockup-dot:nth-child(3) { background: #28C840; }
.mockup-url {
  flex:          1;
  background:    var(--surface);
  border:        1px solid var(--border);
  border-radius: 3px;
  padding:       0.28rem 0.75rem;
  font-size:     0.70rem;
  color:         var(--text-muted);
  margin-left:   0.5rem;
}
.gbober-mockup-body { padding: 1.5rem; }
.gbober-screen-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; }
.gbober-screen-title  { font-weight: 700; font-size: 0.88rem; color: var(--gold); }
.gbober-screen-badge  { background: rgba(201,168,76,0.12); color: var(--gold); font-size: 0.62rem; padding: 0.2rem 0.6rem; border-radius: 20px; font-weight: 700; }
.gbober-row { display: flex; justify-content: space-between; align-items: center; padding: 0.65rem 0; border-bottom: 1px solid var(--border); font-size: 0.78rem; }
.gbober-row:last-of-type { border-bottom: none; }
.gbober-row-site { font-weight: 600; }
.gbober-row-da   { background: var(--surface-3); color: var(--gold); font-size: 0.65rem; font-weight: 700; padding: 0.18rem 0.45rem; border-radius: var(--radius); }
.gbober-row-status         { font-size: 0.70rem; }
.gbober-row-status.active  { color: #2ecc71; }
.gbober-row-status.pending { color: #f39c12; }
.gbober-revenue-box { margin-top: 1.2rem; padding: 0.85rem 1rem; background: var(--surface-3); border-radius: var(--radius); }
.gbober-revenue-label { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.3rem; }
.gbober-revenue-num   { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; color: var(--gold); }
.gbober-revenue-up    { font-size: 0.78rem; color: #2ecc71; margin-left: 0.4rem; }

.gbober-features { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
.gbober-feature  { display: flex; gap: 1rem; align-items: flex-start; }
.gbober-feature-icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.07);
  border:     1px solid var(--border);
  border-radius: var(--radius);
  display:    flex; align-items: center; justify-content: center;
  font-size:  1rem; flex-shrink: 0;
}
.gbober-feature-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.2rem; }
.gbober-feature-desc  { font-size: 0.80rem; color: var(--text-muted); line-height: 1.65; }
.gbober-app-btn {
  display:        inline-flex;
  align-items:    center;
  gap:            0.6rem;
  margin-top:     2.5rem;
  background:     var(--gold);
  color:          var(--black);
  font-weight:    800;
  font-size:      0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding:        0.9rem 2rem;
  border-radius:  var(--radius);
  transition:     background var(--transition);
}
.gbober-app-btn:hover { background: var(--gold-light); color: var(--black); }

/* ============================================================
   INCOME CALCULATOR
   ============================================================ */
#calculator { background: var(--black); padding: 6rem 5vw; }
.calc-inner  { max-width: 900px; margin: 0 auto; text-align: center; }
.calc-header { margin-bottom: 3rem; }
.calc-card {
  background:    var(--surface);
  border:        1px solid var(--border);
  border-radius: var(--radius);
  padding:       3rem;
  position:      relative;
}
.calc-card::before {
  content:    '';
  position:   absolute;
  top: 0; left: 0; right: 0;
  height:     2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.calc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-bottom: 2.5rem; }
.calc-input-label {
  display:        block;
  font-size:      0.70rem;
  font-weight:    700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:          var(--text-muted);
  margin-bottom:  0.5rem;
  text-align:     left;
}
.calc-val {
  font-family: var(--font-display);
  font-size:   1.6rem;
  font-weight: 900;
  color:       var(--gold);
  text-align:  left;
  margin:      0.3rem 0;
}
.calc-range {
  -webkit-appearance: none;
  appearance:  none;
  width:       100%;
  height:      3px;
  background:  var(--surface-3);
  border-radius: 2px;
  outline:     none;
  cursor:      pointer;
  margin:      0.5rem 0;
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width:  18px; height: 18px;
  border-radius: 50%;
  background:    var(--gold);
  cursor:        pointer;
  border:        2px solid var(--black);
  box-shadow:    0 0 0 2px var(--gold);
}
.calc-result {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display:    flex;
  justify-content: space-around;
  gap:        2rem;
  flex-wrap:  wrap;
}
.calc-result-num   { font-family: var(--font-display); font-size: 2.4rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 0.4rem; }
.calc-result-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }

/* ============================================================
   COURSE
   ============================================================ */
#course {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding:    6rem 5vw;
}
.course-inner {
  max-width:   1200px;
  margin:      0 auto;
  display:     grid;
  grid-template-columns: 1fr 1fr;
  gap:         5rem;
  align-items: start;
}
.course-features { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.feature-row {
  display:     flex;
  align-items: center;
  gap:         1rem;
  padding:     0.9rem 1.2rem;
  background:  var(--surface-2);
  border:      1px solid var(--border);
  border-radius: var(--radius);
  font-size:   0.88rem;
  transition:  border-color var(--transition);
}
.feature-row:hover { border-color: var(--gold); }
.feature-check {
  width:  22px; height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display:    flex; align-items: center; justify-content: center;
  font-size:  0.72rem; font-weight: 900; color: var(--black); flex-shrink: 0;
}
.course-enroll-card {
  background:    var(--surface-2);
  border:        1px solid var(--border);
  border-radius: var(--radius);
  padding:       2.5rem 2rem;
  position:      relative;
  overflow:      hidden;
}
.course-enroll-card::before {
  content:    '';
  position:   absolute;
  top: 0; left: 0; right: 0;
  height:     3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.enroll-badge {
  display:        inline-block;
  background:     rgba(201,168,76,0.10);
  color:          var(--gold);
  border:         1px solid var(--gold-dim);
  font-size:      0.66rem;
  font-weight:    700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding:        0.28rem 0.75rem;
  border-radius:  1px;
  margin-bottom:  1.4rem;
}
.enroll-title { font-family: var(--font-display); font-size: 1.55rem; font-weight: 900; margin-bottom: 0.8rem; line-height: 1.2; }
.enroll-desc  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 2rem; }
.enroll-perks { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2.5rem; }
.enroll-perks li { font-size: 0.85rem; display: flex; gap: 0.6rem; align-items: flex-start; }
.enroll-perks li::before { content: '✦'; color: var(--gold); font-size: 0.58rem; flex-shrink: 0; margin-top: 0.35rem; }
.enroll-btn {
  display:        block;
  width:          100%;
  background:     var(--gold);
  color:          var(--black);
  font-weight:    800;
  font-size:      0.83rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align:     center;
  padding:        1rem;
  border-radius:  var(--radius);
  border:         none;
  cursor:         pointer;
  transition:     background var(--transition);
}
.enroll-btn:hover { background: var(--gold-light); }

/* ============================================================
   PIONEER BANNER
   ============================================================ */
#pioneer {
  background:  var(--black);
  padding:     5.5rem 5vw;
  text-align:  center;
  position:    relative;
  overflow:    hidden;
}
#pioneer::before {
  content:    'PIONEER';
  position:   absolute;
  top: 50%; left: 50%;
  transform:  translate(-50%, -50%);
  font-family: var(--font-display);
  font-size:  clamp(5rem, 18vw, 17rem);
  font-weight: 900;
  color:      rgba(201,168,76,0.028);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.04em;
}
.pioneer-inner    { position: relative; z-index: 1; }
.pioneer-tag {
  display:        inline-block;
  border:         1px solid var(--gold-dim);
  color:          var(--gold);
  font-size:      0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding:        0.38rem 1rem;
  border-radius:  1px;
  margin-bottom:  1.5rem;
}
.pioneer-heading { font-size: clamp(2rem, 5vw, 3.8rem); margin-bottom: 1rem; line-height: 1.1; }
.pioneer-heading em { font-style: italic; color: var(--gold); }
.pioneer-urdu {
  font-family: var(--font-urdu);
  direction:   rtl;
  font-size:   clamp(0.95rem, 2.5vw, 1.45rem);
  color:       var(--text-muted);
  line-height: 2.2;
  margin:      1.5rem auto;
  max-width:   680px;
}
.pioneer-desc { max-width: 580px; margin: 0 auto 2.5rem; color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  background:    var(--surface);
  border-top:    1px solid var(--border);
  padding:       6rem 5vw;
}
.testimonials-inner  { max-width: 1200px; margin: 0 auto; }
.testimonials-header { margin-bottom: 3rem; }
.testimonials-grid   { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testi-card {
  background:    var(--surface-2);
  border:        1px solid var(--border);
  border-radius: var(--radius);
  padding:       2rem 1.8rem;
  transition:    border-color var(--transition);
}
.testi-card:hover { border-color: var(--gold); }
.testi-quote  { font-family: var(--font-display); font-size: 3.2rem; color: var(--gold); line-height: 0.8; margin-bottom: 0.8rem; opacity: 0.45; }
.testi-stars  { color: var(--gold); font-size: 0.75rem; margin-bottom: 0.6rem; }
.testi-text   { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar {
  width: 40px; height: 40px;
  background:    var(--gold-dim);
  border-radius: 50%;
  display:       flex; align-items: center; justify-content: center;
  font-weight:   800; font-size: 0.83rem; color: var(--gold-light); flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.88rem; }
.testi-role { font-size: 0.72rem; color: var(--text-muted); }

/* ============================================================
   FAQ
   ============================================================ */
#faq { background: var(--black); border-top: 1px solid var(--border); padding: 6rem 5vw; }
.faq-inner  { max-width: 860px; margin: 0 auto; }
.faq-header { margin-bottom: 3rem; }
.faq-list {
  border:        1px solid var(--border);
  border-radius: var(--radius);
  overflow:      hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width:      100%;
  background: none;
  border:     none;
  text-align: left;
  padding:    1.4rem 1.8rem;
  display:    flex;
  justify-content: space-between;
  align-items: center;
  gap:        1rem;
  cursor:     pointer;
  font-family: var(--font-body);
  font-size:  0.94rem;
  font-weight: 700;
  color:      var(--text);
  transition: background var(--transition);
}
.faq-question:hover  { background: var(--surface-2); }
.faq-question.active { color: var(--gold); background: var(--surface-2); }
.faq-icon {
  width: 24px; height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display:    flex; align-items: center; justify-content: center;
  font-size:  1rem; flex-shrink: 0; color: var(--gold);
  transition: transform 0.3s;
}
.faq-question.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow:   hidden;
  transition: max-height 0.42s cubic-bezier(0.16,1,0.3,1);
  padding:    0 1.8rem;
}
.faq-answer.open { max-height: 500px; padding: 0 1.8rem 1.4rem; }
.faq-answer p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.85; }
.faq-answer-urdu { font-family: var(--font-urdu); direction: rtl; font-size: 0.9rem; color: var(--gold-light); line-height: 2.2; margin-top: 0.6rem; opacity: 0.85; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  background:    var(--surface);
  border-top:    1px solid var(--border);
  padding:       6rem 5vw;
}
.contact-inner {
  max-width:   1200px;
  margin:      0 auto;
  display:     grid;
  grid-template-columns: 1fr 1fr;
  gap:         5rem;
  align-items: start;
}
.contact-details { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
.contact-detail-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-detail-icon {
  width:  40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display:    flex; align-items: center; justify-content: center;
  font-size:  1rem; flex-shrink: 0; color: var(--gold);
}
.contact-detail-label { font-size: 0.70rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.2rem; }
.contact-detail-value { font-size: 0.92rem; font-weight: 600; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display:        block;
  font-size:      0.70rem;
  font-weight:    700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:          var(--text-muted);
  margin-bottom:  0.5rem;
}
.form-group input,
.form-group textarea {
  width:      100%;
  background: var(--surface-2);
  border:     1px solid var(--border);
  border-radius: var(--radius);
  padding:    0.85rem 1rem;
  color:      var(--text);
  font-size:  0.9rem;
  transition: border-color var(--transition);
  outline:    none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-submit {
  width:          100%;
  background:     var(--gold);
  color:          var(--black);
  font-weight:    800;
  font-size:      0.83rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding:        1rem;
  border-radius:  var(--radius);
  border:         none;
  cursor:         pointer;
  transition:     background var(--transition);
}
.form-submit:hover { background: var(--gold-light); }

/* ============================================================
   FINAL CTA
   ============================================================ */
#cta-final {
  background: var(--black);
  padding:    7rem 5vw;
  text-align: center;
  position:   relative;
  overflow:   hidden;
}
#cta-final::before {
  content:    '';
  position:   absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  transform:  translate(-50%,-50%);
  background: radial-gradient(circle, rgba(201,168,76,0.055) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final-inner { position: relative; z-index: 1; }
.cta-final-eyebrow { font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.cta-final-heading { font-size: clamp(2rem, 5vw, 3.8rem); line-height: 1.1; margin-bottom: 1rem; }
.cta-final-heading em { font-style: italic; color: var(--gold); }
.cta-final-urdu { font-family: var(--font-urdu); direction: rtl; font-size: 1.1rem; color: var(--text-muted); line-height: 2.2; margin: 1.2rem auto; max-width: 580px; }
.cta-final-sub { max-width: 500px; margin: 0 auto 2.5rem; font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }
.cta-final-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
#colophon {
  background:    var(--black);
  border-top:    1px solid var(--border);
  padding:       3rem 5vw 2rem;
}
.footer-inner {
  max-width:   1200px;
  margin:      0 auto;
  display:     flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap:   wrap;
  gap:         1.5rem;
}
.footer-logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--gold); }
.footer-logo span { color: var(--white); }
.footer-copy { font-size: 0.78rem; color: var(--text-muted); text-align: center; line-height: 1.7; }
.footer-copy-urdu { font-family: var(--font-urdu); direction: rtl; font-size: 0.82rem; color: var(--gold); margin-top: 0.3rem; }
.footer-socials { display: flex; gap: 1rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display:    flex; align-items: center; justify-content: center;
  font-size:  0.83rem; color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity:    0;
  transform:  translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid,
  .course-inner,
  .contact-inner,
  .gbober-inner,
  .what-header { grid-template-columns: 1fr; gap: 3rem; }
  .what-cards,
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .services-list { grid-template-columns: 1fr; }
  /* Timeline — single column on tablet/mobile */
  .timeline::before { display: none; }
  .timeline-item {
    display: block;
    margin-bottom: 2rem;
  }
  .tl-dot-col { display: none; }
  .tl-empty   { display: none; }
  .tl-content,
  .tl-content.right {
    display: block;
    text-align: left;
    padding: 1.4rem 1.4rem 1.4rem 1.8rem;
    border-left: 3px solid var(--gold);
    background: var(--surface);
    border-radius: 0 4px 4px 0;
    margin: 0;
  }
  .hero-photo { max-width: 55%; }
}



@media (max-width: 480px) {
  .tl-content,
  .tl-content.right {
    padding: 1.2rem 1rem 1.2rem 1.4rem;
  }
  .tl-year  { font-size: 0.68rem; letter-spacing: 0.08em; }
  .tl-title { font-size: 0.95rem; }
  .tl-desc  { font-size: 0.82rem; }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .nav-links   {
    display: none; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(8,11,15,0.98);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 5vw; gap: 1.2rem; z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-toggle  { display: flex; }
  .nav-links a { font-size: 0.95rem; }

  /* Hero mobile */
  .hero-content {
    padding:   85px 6vw 150px;
    width:           100%;
    max-width:           100%;
    position:  relative;
    z-index:   3;
  }
  .hero-photo {
    position:        absolute;
    top:             0;
    left:            auto;          /* detach from left edge */
    right:           0;             /* flush right — like desktop */
    bottom:          0;
    width:           52%;           /* half screen only */
    height:          100%;
    object-fit:      cover;
    object-position: center top;    /* face centered within the half */
    filter:          brightness(0.80) contrast(1.05);
    /* Restore left-edge fade so half-image blends into dark bg naturally */
    -webkit-mask-image: linear-gradient(
      to right,
      transparent       0%,
      rgba(0,0,0,0.4)  12%,
      rgba(0,0,0,0.85) 25%,
      black            38%,
      black            100%
    );
    mask-image: linear-gradient(
      to right,
      transparent       0%,
      rgba(0,0,0,0.4)  12%,
      rgba(0,0,0,0.85) 25%,
      black            38%,
      black            100%
    );
  }
  .hero-bg::before {
    /* Mobile — left strong dark so text is readable, right lighter to show photo */
    background:
      linear-gradient(
        to right,
        rgba(8,11,15,0.95) 0%,
        rgba(8,11,15,0.80) 45%,
        rgba(8,11,15,0.40) 70%,
        rgba(8,11,15,0.15) 100%
      ),
      linear-gradient(
        to bottom,
        rgba(8,11,15,0.20) 0%,
        rgba(8,11,15,0.15) 50%,
        rgba(8,11,15,0.70) 85%,
        rgba(8,11,15,0.90) 100%
      ) !important;
  }
  .hero-bg::after { display: none; }
  .hero-title {
    font-size:   clamp(2.4rem, 10vw, 3.6rem);
    text-shadow: 0 2px 24px rgba(0,0,0,0.9);
  }
  .hero-title-line1 { white-space: nowrap; }
  .hero-subtitle-urdu {
    white-space: nowrap;
    font-size:   clamp(0.95rem, 4vw, 1.2rem) !important;
  }
  .hero-desc { font-size: 0.95rem; }
  .hero-desc {
    text-shadow: 0 1px 10px rgba(0,0,0,0.9);
  }
  .hero-eyebrow {
    max-width:           100%;
    letter-spacing: 0.12em;
    text-shadow: 0 1px 8px rgba(0,0,0,0.9);
  }

  /* Stats bar mobile */
  .hero-stats  { flex-direction: row; }
  .stat-item   { padding: 1rem 3vw; }
  .stat-num    { font-size: 1.4rem; }
  .stat-label  { font-size: 0.58rem; }

  /* Layouts */
  .what-cards  { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .calc-grid   { grid-template-columns: 1fr; }
  .about-credentials { grid-template-columns: 1fr; }
  .about-badge { width: 80px; height: 80px; bottom: -1rem; right: -0.5rem; }
  .about-badge .badge-num { font-size: 1.3rem; }
  section { padding: 4rem 5vw; }
}

@media (max-width: 480px) {
  .hero-content     { padding: 75px 5vw 140px; }
  .hero-title       { font-size: clamp(1.9rem, 10.5vw, 2.6rem); }
  .hero-title-line1 { white-space: normal; } /* allow wrap on very small */
  .hero-eyebrow     { font-size: 0.58rem; letter-spacing: 0.12em; }
  .hero-desc        { font-size: 0.88rem; }
  /* Ensure photo stays perfectly centered on all small screens */
  .hero-photo       { width: 52% !important; left: auto !important; right: 0 !important; object-position: center top !important; }
}

@media (max-width: 480px) {
  .hero-stats  { flex-direction: row; }
  .stat-item   { padding: 0.9rem 3vw; }
  .stat-num    { font-size: 1.3rem; }
  .trust-track { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   GBOB FULL-WIDTH SECTIONS — override WordPress containers
   ============================================================ */
body.gbob-full-width section,
body.gbob-full-width #trust,
body.gbob-full-width footer#colophon {
  width:       100% !important;
  max-width:   100% !important;
  box-sizing:  border-box !important;
}

body.gbob-full-width #hero {
  margin-left: 0 !important;
  width:       100% !important;
  max-width:   100% !important;
  position:    relative !important;
  left:        auto !important;
}

/* Fix hero title — always white */
.hero-title,
.hero-title em ~ * {
  color:       var(--white) !important;
}
.hero-title em {
  color:       var(--gold) !important;
  font-style:  italic;
}


/* ============================================================
   NAV HEIGHT COMPENSATION
   Hero starts from top of page, padding accounts for nav
   ============================================================ */
body {
  margin: 0;
  padding: 0;
}

/* Ensure nothing pushes hero down */
#hero {
  margin-top: 0 !important;
}

/* Stats bar bottom */
.hero-stats {
  position:        absolute;
  bottom: 0; left: 0; right: 0;
  z-index:         4;
  display:         flex;
  border-top:      1px solid rgba(201,168,76,0.15);
  background:      rgba(8,11,15,0.65);
  backdrop-filter: blur(8px);
}

.stat-item {
  flex:         1;
  padding:      1.2rem 3vw;
  border-right: 1px solid rgba(201,168,76,0.10);
  text-align:   left;
}
.stat-item:last-child { border-right: none; }


/* ============================================================
   SCROLL TO TOP BUTTON
   ============================================================ */
/* ============================================================
   SCROLL TO TOP — bulletproof fixed positioning
   !important to override any WordPress theme wrapper CSS
   ============================================================ */
#scroll-top {
  position:        fixed !important;
  bottom:          2rem !important;
  right:           2rem !important;
  top:             auto !important;
  left:            auto !important;
  z-index:         99999 !important;
  width:           50px !important;
  height:          50px !important;
  max-width:       50px !important;
  min-width:       50px !important;
  background:      #C9A84C !important;
  color:           #080B0F !important;
  border:          none !important;
  border-radius:   50% !important;
  cursor:          pointer !important;
  display:         flex !important;
  align-items:     center !important;
  justify-content: center !important;
  box-shadow:      0 4px 24px rgba(201,168,76,0.40) !important;
  margin:          0 !important;
  padding:         0 !important;
  float:           none !important;
  /* Hidden by default */
  opacity:         0;
  visibility:      hidden;
  transform:       translateY(10px);
  pointer-events:  none;
  transition:      opacity 0.3s ease,
                   visibility 0.3s ease,
                   transform 0.3s ease,
                   background 0.2s ease;
}

#scroll-top.visible {
  opacity:        1 !important;
  visibility:     visible !important;
  transform:      translateY(0) !important;
  pointer-events: auto !important;
}

#scroll-top:hover {
  background:  #E8C97A !important;
  box-shadow:  0 6px 30px rgba(201,168,76,0.55) !important;
  transform:   translateY(-3px) !important;
}

#scroll-top:active {
  transform: translateY(0) !important;
}

#scroll-top svg {
  width:           20px !important;
  height:          20px !important;
  stroke:          #080B0F !important;
  stroke-width:    2.5 !important;
  fill:            none !important;
  stroke-linecap:  round !important;
  stroke-linejoin: round !important;
  pointer-events:  none;
}

@media (max-width: 480px) {
  #scroll-top {
    bottom: 1.5rem !important;
    right:  1.5rem !important;
    width:  46px !important;
    height: 46px !important;
    max-width: 46px !important;
    min-width: 46px !important;
  }
}
