@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@500;600;700&display=swap');
/* =====================================================
   GOLD GROUP PARTNERSHIP — style.css
   Matte premium partner-dashboard theme (charcoal + muted gold)
   ===================================================== */

/* ---------- COLOR + TOKENS ---------- */
:root {
  /* neutral graphite greys — no blue/navy undertone */
  --bg-main: #0B0B0D;
  --bg-soft: #111214;
  --bg-card: #17181B;
  --bg-card-2: #1C1D21;
  --bg-elevated: #23252A;

  /* warm orange-gold accent (used only for accents, not surfaces) */
  --accent: #E09A2D;
  --accent-2: #F5AE3D;
  --accent-soft: rgba(224,154,45,0.14);
  /* legacy gold-* names kept as aliases so all existing rules keep working */
  --gold: #E09A2D;
  --gold-light: #F5AE3D;
  --gold-muted: #C07F1F;
  --gold-soft: rgba(224,154,45,0.14);

  --text-main: #F4F4F5;
  --text-muted: #A3A3A8;
  --text-soft: #7D7F85;
  --green: #35D07F;

  --border-soft: rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.10);
  /* card/structural borders are neutral; accent border only for buttons/pills */
  --border-gold: rgba(255,255,255,0.08);
  --border-gold-soft: rgba(224,154,45,0.22);

  /* minimal neutral shadows — no colored glow */
  --glow: 0 6px 20px rgba(0,0,0,0.40);
  --glow-strong: 0 10px 30px rgba(0,0,0,0.50);

  --radius: 14px;
  --header-h: 70px;
  --max-w: 1200px;
}

/* ---------- RESET / BASE ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: "Inter", "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Lock scroll when mobile drawer is open */
body.no-scroll { overflow: hidden; }

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- SHARED GOLD BUTTON ---------- */
.btn-gold {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 10px;
  border: none;
  background: #E0A12A;          /* clean solid gold fill */
  color: #1E1404;              /* dark text for strong contrast */
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.22);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-gold:hover {
  background: #F2B441;          /* slightly brighter on hover */
  transform: translateY(-1px);
  box-shadow: 0 4px 13px rgba(0,0,0,0.28);
}
.btn-sm { padding: 7px 18px; font-size: 0.8rem; }

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-gold);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;            /* anchor for the centered nav group */
}

/* Brand */
.brand { display: flex; align-items: center; }
.brand-logo-tile {
  width: 170px;
  height: 58px;
  flex: none;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}
.brand-logo { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.brand-text { display: none; }
.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: var(--gold-light);
}
.brand-text small { font-size: 0.65rem; letter-spacing: 3px; color: var(--text-muted); }

/* Desktop nav — centered as an independent group (logo left, button right are unaffected) */
.desktop-nav { display: flex; gap: 28px; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.desktop-nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.2s ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.desktop-nav a:hover { color: var(--gold-light); }
.desktop-nav a:hover::after { width: 100%; }

.header-cta { margin-left: 24px; }
.header-cta[aria-expanded="true"] {
  background: #F2B441;
  transform: translateY(-1px);
  box-shadow: 0 4px 13px rgba(0,0,0,0.28);
}
.header-channel-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 20px;
  width: 230px;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(224,154,45,0.22);
  background: rgba(15, 15, 17, 0.98);
  box-shadow: 0 18px 38px rgba(0,0,0,0.48), inset 0 1px 0 rgba(255,255,255,0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 130;
}
.header-channel-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-channel-dropdown::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 34px;
  width: 12px;
  height: 12px;
  background: rgba(15, 15, 17, 0.98);
  border-top: 1px solid rgba(224,154,45,0.22);
  border-left: 1px solid rgba(224,154,45,0.22);
  transform: rotate(45deg);
}
.header-channel-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.2px;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}
.header-channel-link:hover,
.header-channel-link:focus-visible {
  color: var(--text-main);
  background: rgba(224,154,45,0.10);
  transform: translateX(2px);
  outline: none;
}
.header-channel-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.header-channel-icon svg {
  width: 17px;
  height: 17px;
}
.header-channel-icon.whatsapp { color: #25D366; }
.header-channel-icon.telegram { color: #2EA6E8; }
.header-channel-icon.facebook { color: #1877F2; }

/* Hamburger (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: 0.3s;
}

/* =====================================================
   MOBILE SIDE MENU (drawer)
   ===================================================== */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 200;
}
.menu-overlay.active { opacity: 1; visibility: visible; }

.side-menu {
  position: fixed;
  top: 0; right: 0;
  width: 78%;
  max-width: 320px;
  height: 100%;
  background: #060606;
  border-left: 1px solid var(--border-gold);
  box-shadow: -8px 0 30px rgba(0,0,0,0.6);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 300;
  display: flex;
  flex-direction: column;
}
.side-menu.open { transform: translateX(0); }

.side-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border-gold);
}
.side-menu-title { letter-spacing: 4px; color: var(--gold); font-size: 0.85rem; }
.side-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: none; border: none;
  color: var(--gold);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}
.side-close:hover { color: var(--gold-light); background: rgba(224,154,45,0.08); }
.side-close-icon { width: 23px; height: 23px; }

.side-links { display: flex; flex-direction: column; padding: 12px 0; }
.side-links a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 16px 24px;
  font-size: 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(224,154,45,0.12);
  transition: color 0.2s ease, background 0.2s ease;
}
.side-link-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: rgba(224,154,45,0.72);
  transition: color 0.2s ease, transform 0.2s ease;
}
.side-links a:hover { color: var(--gold-light); background: rgba(224,154,45,0.06); }
.side-links a:hover .side-link-icon { color: var(--gold-light); transform: translateX(2px); }
.side-links a[aria-current="page"] {
  color: var(--gold-light);
  background: rgba(224,154,45,0.09);
}
.side-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: var(--gold);
}
.side-links a[aria-current="page"] .side-link-icon { color: var(--gold); }

/* =====================================================
   1. HERO SLIDER
   ===================================================== */
.hero { padding: 20px 0 12px; }

.hero-slider {
  position: relative;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--glow);
}
.hero-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-slide {
  min-width: 100%;
  /* matches a 1920x480 (4:1) banner — full image, no crop, comfortable height */
  aspect-ratio: 1920 / 480;
  height: auto;
  background: var(--bg-main);
  background-size: cover;
  background-position: center;
  position: relative;
}
/* (gold lighting wash removed — slides now show the artwork clean) */
.hero-slide::before { content: none; }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  gap: 14px;
}
.hero-logo { width: 84px; height: 84px; object-fit: contain; filter: drop-shadow(0 0 14px rgba(224,154,45,0.4)); }
.hero-title { font-size: 2.2rem; font-weight: 800; letter-spacing: 1px; }
.hero-tag {
  font-size: 0.85rem;
  letter-spacing: 5px;
  color: var(--gold-light);
  padding: 8px 18px;
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  box-shadow: var(--glow);
}
.hero-brand-strip { display: flex; gap: 16px; margin-top: 6px; flex-wrap: wrap; justify-content: center; }
.hero-brand-strip img { width: 46px; height: 46px; object-fit: contain; opacity: 0.9; }

/* ---------- Shared slider arrows + dots ---------- */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(214,154,43,0.35);
  background: rgba(20,14,6,0.65);          /* subtle dark circle, blends into the banner */
  color: #D89A2B;                           /* muted gold arrow icon */
  font-size: 1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);  /* soft shadow only */
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.slider-arrow:hover {
  background: rgba(30,21,9,0.8);            /* only slightly brighter — stays dark/subtle */
  border-color: rgba(214,154,43,0.55);
  color: #F0B23C;
}
.arrow-left { left: 14px; }
.arrow-right { right: 14px; }

.slider-dots {
  position: absolute;
  bottom: 16px; left: 0; right: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 9px;
}
.slider-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: #555;
  cursor: pointer;
  transition: all 0.25s ease;
}
.slider-dots button.active {
  background: var(--gold);
  width: 26px;
  border-radius: 6px;
  box-shadow: var(--glow);
}

/* =====================================================
   SECTION SHELL
   ===================================================== */
.section { padding: 56px 0; }
.section-soft { background: var(--bg-soft); }
.section-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 34px;
  color: var(--text-main);
}

/* =====================================================
   2. FEATURED PARTNER BRANDS
   ===================================================== */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.brand-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: var(--glow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.brand-card:hover { transform: translateY(-6px); box-shadow: var(--glow-strong); }
.brand-card-logo {
  width: 90px; height: 90px;
  display: grid; place-items: center;
}
.brand-card-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.brand-name { font-size: 0.95rem; letter-spacing: 1px; color: var(--text-main); }

/* =====================================================
   3. EXCLUSIVE PROMOTIONS (carousel)
   ===================================================== */
.promo-carousel { position: relative; padding: 10px 0 44px; overflow: hidden; }
.promo-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.promo-card {
  flex: 0 0 280px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  overflow: hidden;
  opacity: 0.55;
  transform: scale(0.92);
  transition: all 0.35s ease;
}
/* center / active card highlighted */
.promo-card.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: var(--glow-strong);
}
.promo-img {
  height: 180px;
  background: var(--bg-soft);
  background-size: cover;
  background-position: center;
}
.promo-label {
  display: block;
  text-align: center;
  padding: 16px 10px;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--gold-light);
}

/* =====================================================
   4. OFFICIAL CHANNELS
   ===================================================== */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.channel-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  box-shadow: var(--glow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.channel-card:hover { transform: translateY(-4px); box-shadow: var(--glow-strong); }
.channel-name { font-size: 0.95rem; letter-spacing: 1px; }

.channel-icon {
  width: 46px; height: 46px;
  min-width: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.channel-icon svg { width: 24px; height: 24px; }

/* brand icon colors */
.icon-whatsapp { color: #25d366; }
.icon-telegram { color: #2aabee; }
.icon-facebook { color: #1877f2; }
.icon-website  { color: var(--gold); }
.icon-livechat { color: var(--gold-light); }

/* =====================================================
   5. FOOTER
   ===================================================== */
.site-footer {
  background: #030303;
  border-top: 1px solid var(--border-gold);
  padding-top: 44px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 34px;
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.footer-logo { width: min(100%, 260px); height: auto; object-fit: contain; object-position: left center; }
.footer-brand-text strong {
  display: none;
  letter-spacing: 1px;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.footer-brand-text small { color: var(--text-muted); font-size: 0.8rem; }

.footer-col h4 {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-social { display: flex; gap: 12px; }
.footer-social .channel-icon { width: 40px; height: 40px; min-width: 40px; }
.footer-social .channel-icon svg { width: 20px; height: 20px; }

.footer-bottom {
  border-top: 1px solid rgba(224,154,45,0.15);
  text-align: center;
  padding: 18px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }

/* =====================================================
   RESPONSIVE — TABLET
   ===================================================== */
@media (max-width: 992px) {
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .channel-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 1.8rem; }
}

/* =====================================================
   RESPONSIVE — MOBILE
   ===================================================== */
@media (max-width: 960px) {
  .desktop-nav, .header-cta, .header-channel-dropdown { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 680px) {
  /* header: show hamburger, hide desktop nav + cta */
  .desktop-nav, .header-cta, .header-channel-dropdown { display: none; }
  .hamburger { display: flex; }
  .brand-logo-tile { width: 132px; height: 48px; }

  .container { padding: 0 16px; }

  /* ---------- HERO: compact swipeable banner ---------- */
  .hero { padding: 14px 0 16px; }
  .hero-slider { border-radius: 18px; }
  /* compact banner, brand cards stay visible quickly */
  .hero-slide { height: clamp(220px, 38vh, 320px); }
  .hero-overlay { gap: 12px; padding: 22px 18px; justify-content: center; }
  .hero-logo { width: 58px; height: 58px; }
  .hero-title { font-size: 1.3rem; line-height: 1.25; }
  .hero-tag { letter-spacing: 2.5px; font-size: 0.65rem; padding: 6px 14px; }
  .hero-brand-strip { gap: 12px; margin-top: 6px; }
  .hero-brand-strip img { width: 34px; height: 34px; }
  .slider-arrow { width: 38px; height: 38px; }
  .slider-dots { bottom: 14px; }

  /* ---------- BRANDS: clean 2-col row cards ---------- */
  .brand-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .brand-card {
    flex-direction: row;
    align-items: center;        /* vertical centering */
    text-align: left;
    padding: 16px 14px;
    gap: 14px;
  }
  /* framed logo tile (premium, placeholder unchanged) */
  .brand-card-logo {
    width: 52px;
    height: 52px;
    min-width: 52px;
    padding: 7px;
    border: 1px solid rgba(224,154,45, 0.28);
    border-radius: 12px;
    background: rgba(224,154,45, 0.05);
  }
  .brand-name {
    flex: 1;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    line-height: 1.2;
  }
  /* hide the Visit button on mobile, show chevron via ::after */
  .brand-card .btn-gold { display: none; }
  .brand-card::after {
    content: "\203A"; /* chevron */
    width: 26px;
    height: 26px;
    min-width: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    color: var(--gold);
    font-size: 1.2rem;
    line-height: 1;
  }

  /* ---------- PROMO ---------- */
  .promo-card { flex: 0 0 230px; }
  .promo-img { height: 150px; }

  /* ---------- CHANNELS (2x2 from tablet rule) ---------- */
  .channel-card { padding: 16px; gap: 12px; }

  /* ---------- FOOTER + SECTION SPACING ---------- */
  .footer-inner { grid-template-columns: 1fr; gap: 26px; }
  .section { padding: 44px 0; }
  .section-title { font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 28px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .hero-track, .promo-track, .side-menu, .menu-overlay { transition: none; }
}
