/* ── AGT MIDDLE EAST LLC — SHARED STYLES ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&family=Cormorant+Garant:ital,wght@0,300;0,400;1,300&display=swap');

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

:root {
  --black:    #0C0C0A;
  --dark:     #161614;
  --dark2:    #1E1E1B;
  --dark3:    #252522;
  --gold:     #D4902A;
  --gold-lt:  #F0B84A;
  --gold-dim: #8C5F1A;
  --white:    #F5F3EE;
  --slate:    #7A7A78;
  --border:   rgba(255,255,255,0.07);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--dark); color: var(--white); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 130px;
  padding: 0 70px;
  display: flex; align-items: center; justify-content: space-between;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow 0.35s, height 0.35s;
}
nav.solid, nav.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  padding: 0 70px;
  height: 118px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav-logo {
  width: 200px;
  height: 78px;
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-image {
  display: block;
  width: 200px;
  height: auto;
  max-height: 78px;
  object-fit: contain;
}

.nav-links { display: flex; gap: 42px; list-style: none; }
.nav-links a {
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: #111111; text-decoration: none; transition: color 0.3s;
  position: relative; padding: 8px 0;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: #111111;
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: #000000; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: #ffffff; background: #111111;
  padding: 12px 22px; text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.nav-cta:hover { background: #333333; transform: translateY(-1px); }

/* Hamburger for mobile */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1px; background: #111111; transition: all 0.3s; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 52vh;
  background: var(--black);
  display: flex; align-items: flex-end;
  padding: 120px 64px 80px;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 40%, rgba(212,144,42,0.08), transparent),
    radial-gradient(ellipse 50% 60% at 10% 60%, rgba(20,50,80,0.15), transparent);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}
.page-hero-line {
  position: absolute; top: 0; right: 30%; width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(212,144,42,0.2), transparent);
}
.page-hero-content { position: relative; z-index: 2; max-width: 900px; }
.breadcrumb {
  font-size: 10px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.2); }
.page-title {
  font-size: clamp(44px, 7vw, 96px); font-weight: 900; text-transform: uppercase;
  line-height: 0.92; letter-spacing: -0.02em;
}
.page-title em { font-style: normal; color: var(--gold); display: block; }
.page-title .outline {
  -webkit-text-stroke: 1px rgba(255,255,255,0.25); color: transparent; display: block;
}
.page-subtitle {
  font-size: 15px; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.45); max-width: 560px; margin-top: 28px;
}

/* ── SHARED SECTION STYLES ── */
.section-tag {
  font-size: 10px; font-weight: 500; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
  display: flex; align-items: center; gap: 14px;
}
.section-tag::before { content: ''; width: 24px; height: 1px; background: var(--gold); }

.btn-gold {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--black); background: var(--gold);
  padding: 16px 36px; text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); border: 1px solid rgba(255,255,255,0.2);
  padding: 15px 34px; text-decoration: none;
  transition: border-color 0.3s, color 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-lt); }

/* Numbers band */
.numbers-band { background: var(--black); padding: 80px 64px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.numbers-inner { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); }
.num-item { padding: 0 40px; border-right: 1px solid var(--border); text-align: center; }
.num-item:last-child { border: none; }
.num-val { font-size: clamp(40px,5vw,68px); font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 10px; }
.num-val span { color: var(--gold); }
.num-lbl { font-size: 10px; font-weight: 400; letter-spacing: 0.25em; text-transform: uppercase; color: var(--slate); }

/* CTA Band */
.cta-band { padding: 100px 64px; background: var(--gold); display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.cta-label { font-size: 10px; font-weight: 600; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(0,0,0,0.5); margin-bottom: 12px; }
.cta-title { font-size: clamp(26px,3.5vw,44px); font-weight: 900; color: var(--black); text-transform: uppercase; line-height: 1.1; letter-spacing: -0.01em; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; }
.btn-dark { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); background: var(--black); padding: 17px 34px; text-decoration: none; white-space: nowrap; transition: opacity 0.3s; }
.btn-dark:hover { opacity: 0.8; }
.btn-outline-dark { font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--black); border: 2px solid rgba(0,0,0,0.3); padding: 15px 32px; text-decoration: none; white-space: nowrap; transition: border-color 0.3s; }
.btn-outline-dark:hover { border-color: var(--black); }

/* ── FOOTER — LIGHT / PREMIUM ── */
footer {
  background: #ffffff;
  color: #111111;
  padding: 80px 64px 36px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.footer-top {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(0,0,0,0.10);
}
.footer-logo-image {
  display: block;
  width: 190px;
  height: auto;
  margin-bottom: 22px;
  object-fit: contain;
}
.footer-tagline {
  font-family: 'Cormorant Garant', serif;
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  color: rgba(17,17,17,0.58);
  line-height: 1.5;
}
.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 24px;
}
.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links-list a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(17,17,17,0.62);
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}
.footer-links-list a:hover {
  color: #111111;
  transform: translateX(3px);
}
.footer-contact-item { margin-bottom: 16px; }
.footer-contact-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 4px;
}
.footer-contact-val {
  font-size: 13px;
  font-weight: 400;
  color: rgba(17,17,17,0.62);
  line-height: 1.6;
}
.footer-bottom {
  max-width: 1440px;
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 12px;
  color: rgba(17,17,17,0.42);
}
.footer-social {
  display: flex;
  gap: 20px;
}
.footer-social a {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(17,17,17,0.42);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--gold-dim); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.85s ease, transform 0.85s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── TICKER ── */
.ticker { background: var(--gold); padding: 13px 0; overflow: hidden; }
.ticker-track { display: flex; white-space: nowrap; animation: ticker 30s linear infinite; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item { font-size: 11px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--black); padding: 0 48px; }
.ticker-item::after { content: ' ◆ '; }



@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* ── OFFICIAL AGT LOGO ── */
.nav-logo { width: 200px; display: block; flex-shrink: 0; }
.nav-logo-image { display: block; width: 200px; height: auto; max-height: 78px; object-fit: contain; object-position: left center; }
.footer-logo-image { display: block; width: 190px; height: auto; margin-bottom: 22px; }
.nav-logo-agt, .nav-logo-sub, .footer-logo-agt, .footer-logo-sub { display: none !important; }
/* =========================================================
   AGT MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 1100px) {

  /* MOBILE HEADER */
  nav,
  nav.solid,
  nav.scrolled {
    height: 72px;
    padding: 0 20px;
    background: #ffffff;
  }

  /* LOGO */
  .nav-logo {
    width: 130px;
    height: 52px;
  }

  .nav-logo-image {
    width: 130px;
    max-height: 52px;
  }

  /* HIDE DESKTOP MENU */
  .nav-links,
  .nav-cta {
    display: none !important;
  }

  /* HAMBURGER */
  .hamburger {
    display: flex !important;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 4px;
    z-index: 1001;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #111111;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* =====================================================
     OPEN MOBILE MENU
     ===================================================== */

  nav.menu-open {
    background: #ffffff !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  }

  nav.menu-open .nav-links {
    display: flex !important;

    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: calc(100vh - 72px);

    margin: 0;
    padding: 40px 28px;

    flex-direction: column;
    align-items: flex-start;
    gap: 0;

    list-style: none;

    background: #0C0C0A;

    overflow-y: auto;

    border-top: 1px solid rgba(212,144,42,0.35);

    z-index: 1000;
  }

  nav.menu-open .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  nav.menu-open .nav-links a {
    display: block;
    width: 100%;
    padding: 20px 0;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.18em;

    color: #ffffff;
  }

  nav.menu-open .nav-links a:hover,
  nav.menu-open .nav-links a.active {
    color: var(--gold);
  }

  nav.menu-open .nav-links a::after {
    display: none;
  }

  /* HAMBURGER → X */
  nav.menu-open .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  nav.menu-open .hamburger span:nth-child(2) {
    opacity: 0;
  }

  nav.menu-open .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* PAGE RESPONSIVE */
  .page-hero {
    padding: 100px 24px 60px;
  }

  .numbers-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .num-item {
    padding: 28px 16px;
  }

  .num-item:nth-child(even) {
    border-right: none;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 70px 24px;
  }

  footer {
    padding: 60px 24px 32px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 600px) {

  nav,
  nav.solid,
  nav.scrolled {
    height: 68px;
    padding: 0 18px;
  }

  .nav-logo,
  .nav-logo-image {
    width: 112px;
    max-width: 112px;
  }

  .hamburger {
    width: 32px;
    height: 32px;
  }

  .hamburger span {
    width: 23px;
  }

  nav.menu-open .nav-links {
    top: 68px;
    height: calc(100vh - 68px);
    padding: 25px 22px;
  }

  nav.menu-open .nav-links a {
    font-size: 14px;
    padding: 18px 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-social {
    flex-wrap: wrap;
  }
}
