/* ═══════════════════════════════════════════════
   GITA Commercial & Industries LLP — style.css
   ═══════════════════════════════════════════════ */

/* ─── ROOT VARIABLES ─── */
:root {
  --gold:        #B8860B;
  --gold-light:  #D4A017;
  --gold-bright: #F5C842;
  --gold-pale:   #FDF5DC;
  --dark:        #0D0D0D;
  --dark2:       #1A1A1A;
  --dark3:       #252525;
  --text-body:   #333333;
  --text-muted:  #777777;
  --border:      rgba(184,134,11,0.2);
  --white:       #ffffff;
  --radius:      6px;
  --transition:  0.28s ease;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { font-family: 'Inter', sans-serif; color: var(--text-body); background: #fff; overflow-x: clip; width: 100%; position: relative; }
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ─── TOPBAR ─── */
.topbar { background: #1a1200; border-bottom: 1px solid rgba(184,134,11,0.3); padding: 6px 0; overflow: hidden; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 8px; width: 100%; flex-wrap: nowrap; }
.topbar-left { display: flex; align-items: center; gap: 10px; flex-shrink: 1; min-width: 0; }
.topbar-left span { font-size: .73rem; color: rgba(255,220,120,0.75); }
.topbar-divider { color: rgba(255,255,255,0.15) !important; }
.topbar-right { display: flex; gap: 10px; flex-shrink: 0; }
.topbar-social { color: rgba(255,200,80,0.6); font-size: .88rem; transition: color var(--transition); }
.topbar-social:hover { color: var(--gold-bright); }

/* ─── NAVBAR ─── */
.main-navbar { background: #0a0a0a; backdrop-filter: blur(14px); border-bottom: 2px solid rgba(184,134,11,0.25); padding: 0; position: sticky; top: 0; z-index: 9000; transition: box-shadow .3s; width: 100%; }
.main-navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.5); }
.navbar-brand img { height: 50px; object-fit: contain; max-width: 140px; }
.nav-link { color: rgba(255,255,255,0.78) !important; font-size: .8rem; letter-spacing: .07em; text-transform: uppercase; font-weight: 500; padding: 1.4rem 1rem !important; transition: color var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--gold-bright) !important; }
.dropdown-menu { background: #111; border: 1px solid var(--border); border-radius: 4px; padding: .4rem 0; margin-top: 0 !important; }
.dropdown-item { color: rgba(255,255,255,0.75); font-size: .8rem; padding: .55rem 1.25rem; transition: all var(--transition); }
.dropdown-item i { color: var(--gold); }
.dropdown-item:hover { background: rgba(184,134,11,0.1); color: var(--gold-bright); }
.btn-nav-gold { background: var(--gold); color: #000 !important; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .55rem 1.4rem; border-radius: 3px; transition: all var(--transition); white-space: nowrap; }
.btn-nav-gold:hover { background: var(--gold-bright); transform: translateY(-1px); }

/* hamburger — only on mobile */
.sidebar-toggle-btn { display: none; background: transparent; border: 1px solid rgba(184,134,11,0.4); border-radius: 4px; width: 42px; height: 36px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; padding: 0; }
.sidebar-toggle-btn span { display: block; width: 20px; height: 2px; background: var(--gold-light); border-radius: 2px; transition: all var(--transition); }

/* ─── MOBILE SIDEBAR ─── */
.sidebar-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 9990; opacity: 0; pointer-events: none; transition: opacity .3s; }
.sidebar-overlay.active { opacity: 1; pointer-events: all; }

.mobile-sidebar { position: fixed; top: 0; left: -320px; width: 300px; height: 100dvh; background: #fff; z-index: 9999; display: flex; flex-direction: column; transition: left .35s cubic-bezier(.22,.61,.36,1); box-shadow: 4px 0 32px rgba(0,0,0,0.2); }
.mobile-sidebar.open { left: 0; }

.sidebar-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; background: var(--dark); border-bottom: 1px solid rgba(184,134,11,0.2); }
.sidebar-logo { height: 44px; object-fit: contain; }
.sidebar-close { background: transparent; border: 1px solid rgba(255,255,255,0.15); border-radius: 4px; width: 34px; height: 34px; color: rgba(255,255,255,0.7); font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.sidebar-close:hover { background: rgba(184,134,11,0.15); color: var(--gold-bright); }

.sidebar-nav { flex: 1; overflow-y: auto; padding: 10px 0; scrollbar-width: thin; scrollbar-color: rgba(184,134,11,0.3) transparent; }
.sidebar-nav::-webkit-scrollbar { width: 4px; }
.sidebar-nav::-webkit-scrollbar-track { background: transparent; }
.sidebar-nav::-webkit-scrollbar-thumb { background: rgba(184,134,11,0.35); border-radius: 4px; }
.sidebar-nav::-webkit-scrollbar-thumb:hover { background: rgba(184,134,11,0.6); }
.sidebar-link { display: flex; align-items: center; justify-content: flex-start; text-align: left; gap: 14px; padding: 14px 20px; font-size: .9rem; font-weight: 500; color: #222; border-bottom: 1px solid #f0f0f0; width: 100%; background: transparent; border-left: none; border-right: none; border-top: none; cursor: pointer; transition: all var(--transition); text-decoration: none; box-sizing: border-box; }
.sidebar-link i:first-child { font-size: 1.15rem; color: var(--gold); width: 22px; text-align: center; flex-shrink: 0; }
.sidebar-link span { flex: 1; text-align: left; }

/* ─── SIDEBAR BUTTON RESET ─── */
.sidebar-nav button,
.sidebar-link.sidebar-drop-toggle {
  text-align: left;
  justify-content: flex-start;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  font-family: inherit;
}

.sidebar-arrow { font-size: .75rem; color: #aaa; transition: transform var(--transition); margin-left: auto; }
.sidebar-link:hover, .sidebar-link.active { background: var(--gold-pale); color: var(--gold); }
.sidebar-link.active { border-left: 3px solid var(--gold); }

.sidebar-subnav { display: none; background: #f5f5f5; box-shadow: inset 3px 0 0 rgba(184,134,11,0.25); }
.sidebar-subnav.open { display: block; }
.sidebar-sublink { display: flex; align-items: center; gap: 10px; padding: 11px 20px; font-size: .83rem; color: #555; border-bottom: 1px solid #f0f0f0; transition: all var(--transition); text-decoration: none; }
.sidebar-sublink i { color: var(--gold); font-size: .95rem; width: 20px; text-align: center; flex-shrink: 0; }
.sidebar-sublink:hover { background: var(--gold-pale); color: var(--gold); }

.sidebar-footer { padding: 14px 14px 20px; border-top: 1px solid #eee; display: flex; flex-direction: column; gap: 8px; }
.sidebar-cta-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px; background: var(--gold); color: #000; font-weight: 700; font-size: .85rem; border-radius: 4px; text-decoration: none; transition: all var(--transition); }
.sidebar-cta-btn:hover { background: var(--gold-bright); }
.sidebar-call-btn { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px; background: var(--dark); color: #fff; font-weight: 600; font-size: .85rem; border-radius: 4px; text-decoration: none; transition: all var(--transition); }
.sidebar-call-btn:hover { background: #222; }

/* ─── HERO SLIDER ─── */
.hero-slider { position: relative; overflow: hidden; min-height: 100vh; width: 100%; }
.hero-row { min-height: 100vh; padding: 100px 0 120px; }
.hero-slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .7s ease; }
.hero-slide.active { opacity: 1; pointer-events: all; position: relative; min-height: 100vh; }
.hero-slide-bg { position: absolute; inset: 0; z-index: 0; }
.hero-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(184,134,11,0.06) 1px, transparent 0); background-size: 32px 32px; }
.hero-content-wrap { position: relative; z-index: 2; width: 100%; }
.hero-slide-inner { animation: slideUp .7s ease forwards; max-width: 100%; }
@keyframes slideUp { from { opacity:0; transform:translateY(28px);} to { opacity:1; transform:translateY(0);} }
.hero-eyebrow { display: inline-flex; align-items: center; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-light); font-weight: 600; margin-bottom: 1.2rem; background: rgba(184,134,11,0.1); border: 1px solid rgba(184,134,11,0.25); border-radius: 20px; padding: .35rem 1rem; }
.hero-headline { font-size: clamp(1.9rem, 4.2vw, 3.5rem); color: #fff; line-height: 1.18; margin-bottom: 1.3rem; }
.hero-headline span { color: var(--gold-bright); }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.78; max-width: 100%; margin-bottom: 2.2rem; word-break: break-word; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-gold-hero { background: var(--gold); color: #000; font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; padding: .85rem 2.2rem; border-radius: 3px; transition: all var(--transition); }
.btn-gold-hero:hover { background: var(--gold-bright); transform: translateY(-2px); color: #000; }
.btn-outline-hero { background: transparent; color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.25); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; padding: .85rem 2.2rem; border-radius: 3px; font-weight: 500; transition: all var(--transition); }
.btn-outline-hero:hover { border-color: var(--gold-light); color: var(--gold-bright); }

/* hero logo */
.hero-logo-wrap { position: relative; }
.hero-logo-wrap::before { content: ''; position: absolute; width: min(360px,90vw); height: min(360px,90vw); border-radius: 50%; background: radial-gradient(circle, rgba(184,134,11,0.14) 0%, transparent 65%); top: 50%; left: 50%; transform: translate(-50%,-50%); }
.hero-logo-img { width: min(320px,85%); max-width: 100%; position: relative; filter: drop-shadow(0 0 40px rgba(184,134,11,0.3)); }

/* stat panel (slide 2) */
.hero-stat-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hsp-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(184,134,11,0.18); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.hsp-num { font-family: 'Playfair Display',serif; font-size: 2rem; color: var(--gold-bright); font-weight: 700; line-height: 1; }
.hsp-lbl { font-size: .72rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: .1em; margin-top: .4rem; }

/* market list (slide 3) */
.hero-market-list { background: rgba(255,255,255,0.04); border: 1px solid rgba(184,134,11,0.18); border-radius: var(--radius); padding: 1.8rem; }
.hml-title { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-light); font-weight: 600; margin-bottom: 1.2rem; }
.hml-item { display: flex; align-items: center; gap: .75rem; padding: .7rem 0; border-bottom: 1px solid rgba(184,134,11,0.1); font-size: .9rem; color: rgba(255,255,255,0.75); }
.hml-item:last-child { border-bottom: none; }
.hml-item i { color: var(--gold-bright); font-size: .85rem; }

/* promo tags (slide 4) */
.hero-promo-tags { background: rgba(255,255,255,0.04); border: 1px solid rgba(184,134,11,0.18); border-radius: var(--radius); padding: 1.8rem; }
.hpt-title { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-light); font-weight: 600; margin-bottom: 1rem; }
.hpt-wrap { display: flex; flex-wrap: wrap; gap: .5rem; }
.hpt-tag { background: rgba(184,134,11,0.12); border: 1px solid rgba(184,134,11,0.25); color: var(--gold-bright); font-size: .75rem; font-weight: 600; padding: .35rem .8rem; border-radius: 3px; }

/* arrows */
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,0.07); border: 1px solid rgba(184,134,11,0.3); border-radius: 50%; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-size: 1.1rem; cursor: pointer; transition: all var(--transition); }
.slider-arrow:hover { background: rgba(184,134,11,0.2); color: var(--gold-bright); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* dots */
.slider-dots { position: absolute; bottom: 70px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.sdot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25); cursor: pointer; transition: all .3s; }
.sdot.active { background: var(--gold-bright); width: 24px; border-radius: 4px; }

/* progress */
.slider-progress { position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: rgba(255,255,255,0.08); z-index: 10; }
.slider-progress-bar { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-bright)); width: 0; transition: width linear; }

/* ticker */
.hero-ticker { position: absolute; bottom: 46px; left: 0; width: 100%; max-width: 100vw; overflow: hidden; z-index: 10; border-top: 1px solid rgba(184,134,11,0.15); border-bottom: 1px solid rgba(184,134,11,0.15); background: rgba(0,0,0,0.5); padding: 8px 0; }
.ticker-track { display: inline-flex; align-items: center; gap: 1.5rem; white-space: nowrap; animation: ticker 22s linear infinite; }
.ticker-track span { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,0.55); font-weight: 500; }
.ticker-track i { color: var(--gold); font-size: .5rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── STATS STRIP ─── */
.stats-strip { background: #fff; border-top: 3px solid var(--gold); border-bottom: 1px solid rgba(184,134,11,0.15); padding: 0; overflow: hidden; }
.stats-row { display: flex; align-items: stretch; flex-wrap: wrap; width: 100%; }
.stat-box { flex: 1; min-width: 0; padding: 1.8rem 1rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 6px; }
.stat-num { font-family: 'Playfair Display',serif; font-size: 2.1rem; color: var(--gold); font-weight: 700; line-height: 1; }
.stat-plus { font-family: 'Playfair Display',serif; font-size: 1.6rem; color: var(--gold); font-weight: 700; line-height: 1; margin-left: 2px; display: inline; }
.stat-lbl { font-size: .7rem; color: #888; text-transform: uppercase; letter-spacing: .1em; margin-top: 3px; }
.stat-divider { width: 1px; background: rgba(184,134,11,0.2); margin: 1.2rem 0; align-self: stretch; }

/* ─── SECTION SHARED ─── */
.sec-about, .sec-promo-snap, .sec-export-snap { padding: 96px 0; }
.sec-services { padding: 96px 0; background: #F9F8F5; }
.sec-eyebrow { display: inline-flex; align-items: center; font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: .8rem; }
.sec-title { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--dark); line-height: 1.2; margin-bottom: .9rem; }
.sec-title span { color: var(--gold); }
.sec-body { color: #555; line-height: 1.82; font-size: .97rem; }
.gold-rule { width: 50px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-bright)); margin: 1.1rem 0 1.8rem; }
.sec-header { margin-bottom: 3.5rem; }

/* shared buttons */
.btn-gold-solid { display: inline-flex; align-items: center; background: var(--gold); color: #000; font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; padding: .78rem 2rem; border-radius: 3px; border: none; transition: all var(--transition); }
.btn-gold-solid:hover { background: var(--gold-bright); color: #000; transform: translateY(-2px); }
.btn-outline-dark-solid { display: inline-flex; align-items: center; background: transparent; color: var(--dark); border: 1.5px solid rgba(0,0,0,0.25); font-weight: 600; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; padding: .78rem 2rem; border-radius: 3px; transition: all var(--transition); }
.btn-outline-dark-solid:hover { border-color: var(--gold); color: var(--gold); }

/* chips */
.chip-gold { display: inline-flex; align-items: center; gap: 4px; background: var(--gold-pale); border: 1px solid rgba(184,134,11,0.25); border-radius: 3px; padding: .4rem .85rem; font-size: .76rem; color: var(--gold); font-weight: 600; letter-spacing: .04em; }

/* ─── ABOUT IMAGE ─── */
.about-img-wrap { position: relative; }
.about-img-box { border-radius: 8px; overflow: hidden; border: 2px solid rgba(184,134,11,0.2); box-shadow: 0 12px 40px rgba(0,0,0,0.1); background: var(--gold-pale); display: flex; align-items: center; justify-content: center; min-height: 360px; }
.about-img { width: 75%; margin: auto; }
.about-badge-float { position: absolute; bottom: -18px; right: -18px; background: #fff; border: 1px solid rgba(184,134,11,0.25); border-radius: 6px; padding: 1rem 1.25rem; display: flex; align-items: center; gap: .85rem; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.about-badge-float i { font-size: 1.6rem; color: var(--gold); }
.about-badge-float strong { display: block; font-size: .88rem; font-weight: 700; color: var(--dark); }
.about-badge-float span { font-size: .74rem; color: #888; }

/* about feature */
.about-feat { display: flex; gap: 1rem; align-items: flex-start; background: #F9F8F5; border-radius: var(--radius); padding: 1.1rem; border: 1px solid rgba(184,134,11,0.1); }
.about-feat i { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.about-feat h6 { font-size: .85rem; font-weight: 700; color: var(--dark); font-family: 'Inter',sans-serif; margin-bottom: .25rem; }
.about-feat p { font-size: .8rem; color: #666; margin: 0; line-height: 1.6; }

/* ─── SERVICES ─── */
.svc-card { background: #fff; border: 1px solid rgba(184,134,11,0.15); border-radius: 8px; padding: 2rem 1.8rem; height: 100%; transition: all .3s; position: relative; overflow: hidden; }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: linear-gradient(180deg, var(--gold), var(--gold-bright)); transition: height .35s; }
.svc-card:hover::before { height: 100%; }
.svc-card:hover { border-color: rgba(184,134,11,0.35); box-shadow: 0 10px 36px rgba(184,134,11,0.09); transform: translateY(-4px); }
.svc-card-featured { border-color: rgba(184,134,11,0.3); }
.svc-icon-wrap { width: 54px; height: 54px; background: var(--gold-pale); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.45rem; color: var(--gold); margin-bottom: 1.3rem; border: 1px solid rgba(184,134,11,0.2); }
.svc-title { font-family: 'Playfair Display',serif; font-size: 1.15rem; color: var(--dark); margin-bottom: .6rem; font-weight: 600; }
.svc-body { font-size: .86rem; color: #666; line-height: 1.72; margin-bottom: 1.2rem; }
.svc-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-bottom: 1.2rem; }
.svc-tags span { font-size: .68rem; padding: .25rem .65rem; background: var(--gold-pale); color: var(--gold); border-radius: 2px; font-weight: 600; letter-spacing: .04em; }
.svc-link { font-size: .76rem; color: var(--gold); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; display: inline-flex; align-items: center; gap: .4rem; transition: gap var(--transition); }
.svc-link:hover { color: var(--gold-light); gap: .7rem; }

/* ─── PROCESS ─── */
.sec-process { background: linear-gradient(135deg, var(--dark) 0%, #111 100%); padding: 96px 0; position: relative; overflow: hidden; }
.sec-process::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(184,134,11,0.06) 0%, transparent 70%); }
.process-row { display: flex; align-items: flex-start; gap: 0; flex-wrap: wrap; position: relative; z-index: 2; }
.process-step { flex: 1; min-width: 160px; text-align: center; padding: 0 1rem; }
.ps-num { font-family: 'Playfair Display',serif; font-size: 3rem; color: rgba(184,134,11,0.15); font-weight: 700; line-height: 1; margin-bottom: .5rem; }
.ps-icon { width: 60px; height: 60px; background: rgba(184,134,11,0.1); border: 1px solid rgba(184,134,11,0.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--gold-bright); margin: 0 auto 1rem; }
.ps-title { color: #fff; font-size: .92rem; font-weight: 600; margin-bottom: .45rem; font-family: 'Inter',sans-serif; }
.ps-body { font-size: .8rem; color: rgba(255,255,255,0.45); line-height: 1.65; }
.process-connector { display: flex; align-items: center; padding-top: 2.5rem; color: rgba(184,134,11,0.35); font-size: 1.4rem; flex-shrink: 0; }

/* ─── PROMOTION SNAPSHOT ─── */
.sec-promo-snap { background: #F9F8F5; }
.promo-feats { display: flex; flex-direction: column; gap: 1.1rem; }
.pf-item { display: flex; align-items: flex-start; gap: 1rem; }
.pf-icon { width: 44px; height: 44px; border: 1px solid rgba(184,134,11,0.25); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--gold); flex-shrink: 0; background: var(--gold-pale); }
.pf-item h6 { font-size: .88rem; font-weight: 700; color: var(--dark); margin-bottom: .2rem; font-family: 'Inter',sans-serif; }
.pf-item p { font-size: .8rem; color: #666; margin: 0; line-height: 1.6; }
.promo-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.psg-box { background: #fff; border: 1px solid rgba(184,134,11,0.18); border-radius: var(--radius); padding: 1.8rem; text-align: center; }
.psg-num { font-family: 'Playfair Display',serif; font-size: 2.2rem; color: var(--gold); font-weight: 700; }
.psg-lbl { font-size: .72rem; color: #888; text-transform: uppercase; letter-spacing: .1em; margin-top: .4rem; }

/* ─── EXPORT SNAPSHOT ─── */
.export-card { background: #fff; border: 1px solid rgba(184,134,11,0.15); border-radius: var(--radius); padding: 1.8rem 1.5rem; text-align: center; height: 100%; transition: all .3s; }
.export-card:hover { border-color: rgba(184,134,11,0.4); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(184,134,11,0.09); }
.ec-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 1rem; }
.export-card h6 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; font-family: 'Inter',sans-serif; }
.export-card p { font-size: .8rem; color: #888; margin: 0; line-height: 1.6; }

/* ─── WHY GITA ─── */
.sec-why { background: linear-gradient(135deg, var(--dark2) 0%, #111 100%); padding: 96px 0; overflow: hidden; }
.why-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(184,134,11,0.12); border-radius: var(--radius); padding: 2rem 1.75rem; height: 100%; transition: all .3s; }
.why-card:hover { border-color: rgba(184,134,11,0.3); background: rgba(255,255,255,0.05); transform: translateY(-3px); }
.why-icon { font-size: 1.8rem; color: var(--gold-bright); margin-bottom: 1.1rem; }
.why-card h5 { font-family: 'Inter',sans-serif; font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: .65rem; }
.why-card p { font-size: .83rem; color: rgba(255,255,255,0.48); line-height: 1.7; margin: 0; }

/* ─── CTA BAND ─── */
.sec-cta { background: var(--gold); padding: 60px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
.cta-title { font-size: clamp(1.4rem,3vw,2rem); color: #000; margin-bottom: .4rem; }
.cta-sub { font-size: .92rem; color: rgba(0,0,0,0.65); margin: 0; }
.cta-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.2rem; }
.btn-gold-solid.dark { background: var(--dark); color: #fff; }
.btn-gold-solid.dark:hover { background: #000; }
.cta-call { display: inline-flex; align-items: center; color: rgba(0,0,0,0.75); font-weight: 700; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; transition: color var(--transition); }
.cta-call:hover { color: #000; }

/* ─── FOOTER ─── */
.main-footer { background: #050505; border-top: 1px solid rgba(184,134,11,0.1); padding: 80px 0 0; }
.footer-logo { height: 52px; object-fit: contain; margin-bottom: 1.2rem; }
.footer-desc { font-size: .83rem; color: rgba(255,255,255,0.35); line-height: 1.8; max-width: 280px; margin-bottom: 1.4rem; }
.footer-socials { display: flex; gap: 10px; }
.fs-link { width: 36px; height: 36px; border: 1px solid rgba(184,134,11,0.2); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); font-size: .95rem; transition: all var(--transition); }
.fs-link:hover { border-color: var(--gold-light); color: var(--gold-bright); background: rgba(184,134,11,0.08); }
.footer-heading { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.1rem; font-family: 'Inter',sans-serif; font-weight: 700; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { color: rgba(255,255,255,0.45); font-size: .83rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .85rem; }
.footer-contact-item i { color: var(--gold); font-size: .95rem; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: .82rem; color: rgba(255,255,255,0.42); line-height: 1.55; }
.footer-bottom { border-top: 1px solid rgba(184,134,11,0.1); margin-top: 2rem; padding: 1.4rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .76rem; color: rgba(255,255,255,0.22); margin: 0; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .74rem; color: rgba(255,255,255,0.22); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ─── BACK TO TOP ─── */
.back-to-top { position: fixed; bottom: 28px; right: 24px; width: 44px; height: 44px; background: var(--gold); color: #000; border: none; border-radius: 50%; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; pointer-events: none; transition: all var(--transition); z-index: 9000; box-shadow: 0 4px 16px rgba(184,134,11,0.35); }
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--gold-bright); transform: translateY(-3px); }

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  .sidebar-toggle-btn { display: flex; }
  .navbar-collapse { display: none !important; }
  .navbar-brand img { height: 46px; }
  .topbar-left span { font-size: .72rem; }
  .sec-about, .sec-promo-snap, .sec-export-snap, .sec-services, .sec-process, .sec-why { padding: 64px 0; }
  .process-connector { display: none; }
  .process-step { min-width: 100px; }
  .hero-stat-panel, .hero-market-list, .hero-promo-tags { margin-top: 2rem; }
  .hero-logo-img { width: 230px; }
  .promo-stat-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  /* Topbar: email+phone LEFT, socials RIGHT */
  .topbar { padding: 5px 0; }
  .topbar-inner { flex-wrap: nowrap; align-items: center; justify-content: space-between; }
  .topbar-left { display: flex; flex-shrink: 1; gap: 6px; overflow: hidden; }
  .topbar-left span { font-size: .64rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .topbar-left .topbar-divider { display: none; }
  .topbar-right, .t-right { flex-shrink: 0; gap: 6px; }
  .topbar-social { font-size: .82rem; color: rgba(255,200,80,0.6) !important; }

  /* Navbar */
  .navbar-brand img { height: 42px; max-width: 120px; }
  .sidebar-toggle-btn { width: 38px; height: 32px; }

  /* Hero */
  .hero-headline { font-size: 1.65rem; line-height: 1.2; }
  .hero-row { min-height: auto; padding: 70px 0 100px; }
  .hero-slider { min-height: auto; }
  .hero-slide.active { min-height: auto; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn-gold-hero, .btn-outline-hero { width: 100%; text-align: center; justify-content: center; }
  .hero-eyebrow { font-size: .66rem; }
  .hero-sub { font-size: .9rem; }
  .slider-arrow { width: 36px; height: 36px; font-size: .9rem; }
  .slider-prev { left: 8px; }
  .slider-next { right: 8px; }

  /* Stats strip — 2 per row */
  .stats-row { display: grid; grid-template-columns: 1fr 1fr; }
  .stat-divider, .stat-div { display: none; }
  .stat-box { padding: 1.4rem .75rem; border: 1px solid rgba(184,134,11,0.08); }
  .stat-num { font-size: 1.7rem; }
  .stat-plus { font-size: 1.3rem; }
  .stat-lbl { font-size: .62rem; }
  .stat-icon { font-size: 1.2rem; }

  /* Sections */
  .sec-title { font-size: 1.65rem; }
  .cta-inner { text-align: center; justify-content: center; flex-direction: column; }
  .cta-actions { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .about-badge-float { right: 0; bottom: -10px; }
  .hero-logo-img { width: 190px; }
  .footer-desc { max-width: 100%; }
  .promo-stat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .psg-box { padding: 1.2rem; }
  .psg-num { font-size: 1.6rem; }
  .svc-card, .why-card, .export-card { padding: 1.4rem 1.1rem; }
}

@media (max-width: 480px) {
  /* Topbar ultra small — keep only phone and icons */
  .topbar-left span:first-child { display: none; }
  .topbar-left { gap: 4px; }
  .topbar-left span { font-size: .61rem; }

  /* Navbar */
  .navbar-brand img { height: 38px; max-width: 110px; }

  /* Hero */
  .hero-row { padding: 60px 0 88px; }
  .hero-headline { font-size: 1.4rem; line-height: 1.22; }
  .hero-sub { font-size: .86rem; }
  .hero-eyebrow { font-size: .6rem; padding: .28rem .75rem; }
  .btn-gold-hero, .btn-outline-hero { font-size: .75rem; padding: .7rem 1.2rem; }
  .slider-dots { bottom: 55px; }
  .hero-ticker { bottom: 32px; }

  /* Stats */
  .stat-box { padding: 1.1rem .5rem; }
  .stat-num { font-size: 1.5rem; }
  .stat-lbl { font-size: .58rem; letter-spacing: .05em; }

  /* Sections */
  .sec-about, .sec-promo-snap, .sec-export-snap, .sec-services, .sec-process, .sec-why { padding: 48px 0; }
  .sec-title { font-size: 1.35rem; }
  .sec-body { font-size: .88rem; }
  .promo-stat-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .psg-num { font-size: 1.4rem; }
}

/* ─── HERO IMAGE SLIDES ─── */
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.18;
  z-index: 1;
  transition: opacity .7s ease;
}
.hero-slide.active .hero-img-overlay { opacity: 0.2; }

/* ─── PAGE WRAPPER: clip overflow without breaking sticky ─── */
.page-wrapper {
  overflow-x: clip;
  position: relative;
  width: 100%;
}
/* ═══════════════════════════════════════════
   PAGE LOADER
═══════════════════════════════════════════ */
#pageLoader {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity .5s ease, visibility .5s ease;
}
#pageLoader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  animation: loaderPulse 1.6s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(184,134,11,0.5));
}
@keyframes loaderPulse {
  0%, 100% { opacity: .7; transform: scale(.95); }
  50%       { opacity: 1;  transform: scale(1.05); }
}
.loader-bar-wrap {
  width: 180px;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  border-radius: 2px;
  animation: loaderFill 1.8s ease forwards;
}
@keyframes loaderFill {
  0%   { width: 0%; }
  60%  { width: 75%; }
  90%  { width: 92%; }
  100% { width: 100%; }
}
.loader-text {
  font-family: 'Playfair Display', serif;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  animation: loaderFade 1.8s ease infinite alternate;
}
@keyframes loaderFade {
  from { opacity: .3; }
  to   { opacity: .7; }
}