/* ============================================
   ADZORA AGENCY – Main Stylesheet
   ============================================ */

:root {
  --black: #0a0a0a;
  --gold: #f0c040;
  --gold-dim: #c9a030;
  --white: #f5f5f0;
  --body-bg: #f5f5f0;
  --gray: #888;
  --card-radius: 18px;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--body-bg);
  color: var(--black);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--black);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  height: 64px;
  border-bottom: 1px solid rgba(240,192,64,.15);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: .1em;
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex; gap: 2rem; list-style: none;
}
.nav-links a {
  color: rgba(245,245,240,.6); text-decoration: none;
  font-size: .85rem; font-weight: 500; letter-spacing: .05em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--black);
  border: none; padding: 10px 24px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: .82rem;
  letter-spacing: .07em; text-transform: uppercase;
  cursor: pointer; border-radius: 4px;
  transition: background var(--transition), transform .15s;
  text-decoration: none;
  white-space: nowrap;
}
.nav-cta:hover { background: #fff; transform: translateY(-1px); }

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

@media(max-width:768px) {
  .nav-links {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: var(--black); flex-direction: column;
    padding: 1.5rem 5vw; gap: 1.2rem;
    border-bottom: 1px solid rgba(240,192,64,.15);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-cta-wrap { display: none; }
}

/* ── HERO ── */
#hero {
  min-height: 100svh;
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 5vw 60px;
  position: relative;
  overflow: hidden;
  gap: 2rem;
}
.hero-bg-lines {
  position: absolute; inset: 0; pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(240,192,64,.03) 0px, rgba(240,192,64,.03) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg,  rgba(240,192,64,.03) 0px, rgba(240,192,64,.03) 1px, transparent 1px, transparent 80px);
}
.hero-left { position: relative; z-index: 2; }
.hero-tag {
  font-size: .72rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 6vw, 6rem);
  line-height: .95;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.hero-headline .accent { color: var(--gold); }
.hero-sub {
  color: rgba(245,245,240,.55);
  font-size: 1rem; line-height: 1.7; max-width: 440px;
  margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--black);
  border: none; padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: .9rem;
  letter-spacing: .07em; text-transform: uppercase;
  cursor: pointer; border-radius: 4px;
  transition: background var(--transition), transform .15s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: #fff; transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,.25); padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600; font-size: .9rem;
  letter-spacing: .05em; text-transform: uppercase;
  cursor: pointer; border-radius: 4px;
  transition: border-color var(--transition), color var(--transition);
  text-decoration: none; display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats {
  display: flex; gap: 2rem; margin-top: 3rem;
}
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem; color: var(--white); line-height: 1;
}
.hero-stat-num sup { font-size: 1.2rem; color: var(--gold); }
.hero-stat-label {
  font-size: .72rem; color: rgba(245,245,240,.5);
  text-transform: uppercase; letter-spacing: .1em;
}

/* Hero right – reel stack */
.hero-right {
  position: relative; z-index: 2;
  display: flex; justify-content: center; align-items: center;
}
.reel-stack {
  position: relative; width: 340px; height: 420px;
}
.reel-card {
  position: absolute; border-radius: var(--card-radius);
  overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.6);
  background: #1a1a1a;
}
.reel-card img, .reel-card video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel-card.c1 { width: 260px; height: 340px; right: 0; top: 0; transform: rotate(3deg); }
.reel-card.c2 { width: 260px; height: 340px; left: 0; top: 40px; transform: rotate(-4deg); z-index: 2; }
.reel-card.c3 { width: 200px; height: 260px; right: 20px; bottom: 0; z-index: 3; border: 3px solid var(--gold); }
.reel-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(240,192,64,.9);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10;
  transition: transform .2s, background .2s;
  border: none;
}
.reel-play-btn:hover { transform: translate(-50%,-50%) scale(1.12); background: var(--gold); }
.reel-play-btn svg { margin-left: 4px; }

@media(max-width:900px) {
  #hero { grid-template-columns: 1fr; padding-top: 90px; }
  .hero-right { display: none; }
  .hero-stats { gap: 1.5rem; }
}

/* ── SECTION BASICS ── */
section { padding: 90px 5vw; }
.section-tag {
  font-size: .7rem; font-weight: 700; letter-spacing: .25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: .7rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1; margin-bottom: 1rem;
}
.section-sub {
  color: var(--gray); font-size: .95rem; line-height: 1.7;
  max-width: 560px; margin-bottom: 2.5rem;
}

/* ── PORTFOLIO ── */
#portfolio { background: var(--black); }
#portfolio .section-title { color: var(--white); }
#portfolio .section-tag { color: var(--gold); }
#portfolio .section-sub { color: rgba(245,245,240,.5); }

.portfolio-tabs {
  display: flex; gap: .6rem; margin-bottom: 2.5rem; flex-wrap: wrap;
}
.ptab {
  padding: 8px 20px; border-radius: 4px;
  font-size: .78rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; cursor: pointer;
  border: 1px solid rgba(255,255,255,.15);
  background: transparent; color: rgba(245,245,240,.5);
  transition: var(--transition);
}
.ptab.active, .ptab:hover {
  background: var(--gold); color: var(--black); border-color: var(--gold);
}

/* Desktop: horizontal scroll rows */
.reel-row {
  display: flex; gap: 16px;
  overflow-x: auto; padding-bottom: 12px;
  margin-bottom: 16px;
  scrollbar-width: thin; scrollbar-color: var(--gold) transparent;
}
.reel-row::-webkit-scrollbar { height: 4px; }
.reel-row::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

.reel-item {
  flex: 0 0 220px; height: 390px;
  border-radius: var(--card-radius);
  overflow: hidden; position: relative;
  background: #1a1a1a; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.reel-item:hover { transform: scale(1.03); box-shadow: 0 20px 50px rgba(0,0,0,.5); }
.reel-item img, .reel-item video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.reel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px;
}
.reel-item:hover .reel-overlay { opacity: 1; }
.reel-item-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: var(--white);
}
.reel-item-cat {
  font-size: .72rem; color: var(--gold); letter-spacing: .1em; text-transform: uppercase;
}
.reel-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(240,192,64,.9);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.reel-item:hover .reel-play { transform: translate(-50%,-50%) scale(1); }
.reel-play svg { margin-left: 3px; }

/* Mobile portfolio – 2 col grid */
@media(max-width:768px) {
  .reel-row { display: none; }
  .reel-grid-mobile {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .reel-item { flex: none; width: 100%; height: 220px; }
}
@media(min-width:769px) {
  .reel-grid-mobile { display: none; }
}

/* Placeholder gradient cards */
.reel-placeholder   { background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%); }
.reel-placeholder-1 { background: linear-gradient(135deg, #1c1a0a 0%, #2a240a 100%); }
.reel-placeholder-2 { background: linear-gradient(135deg, #0a1a1c 0%, #0a2224 100%); }
.reel-placeholder-3 { background: linear-gradient(135deg, #1a0a1c 0%, #240a2a 100%); }

/* ── CLIENTS ── */
#clients {
  background: var(--black); padding: 50px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.clients-label {
  text-align: center; font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(245,245,240,.3);
  margin-bottom: 2rem;
}
.clients-track-wrap { overflow: hidden; }
.clients-track {
  display: flex; gap: 3rem; align-items: center;
  animation: marquee 22s linear infinite;
  white-space: nowrap; width: max-content;
}
.clients-track:hover { animation-play-state: paused; }
.client-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: .1em;
  color: rgba(245,245,240,.25);
  transition: color .3s; padding: 0 1.5rem;
  cursor: default; flex-shrink: 0;
}
.client-logo:hover { color: var(--gold); }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── PACKAGES ── */
#packages { background: var(--body-bg); }
.packages-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 1rem;
}
.pkg-card {
  background: var(--black); border-radius: 16px;
  padding: 2.5rem 2rem; position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(240,192,64,.08);
}
.pkg-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform var(--transition);
}
.pkg-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.2); }
.pkg-card:hover::before { transform: scaleX(1); }
.pkg-card.featured { border-color: var(--gold); }
.pkg-card.featured::before { transform: scaleX(1); }
.pkg-badge {
  display: inline-block; background: var(--gold); color: var(--black);
  font-size: .65rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 3px;
  margin-bottom: 1.2rem;
}
.pkg-type {
  font-size: .7rem; letter-spacing: .18em; color: var(--gold);
  text-transform: uppercase; margin-bottom: .5rem;
}
.pkg-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem;
  color: var(--white); margin-bottom: 1rem;
}
.pkg-price { display: flex; align-items: baseline; gap: .3rem; margin-bottom: 1.4rem; }
.pkg-price .amount {
  font-family: 'Bebas Neue', sans-serif; font-size: 3.2rem;
  color: var(--white); line-height: 1;
}
.pkg-price .cents { font-size: 1.2rem; color: var(--gold); align-self: flex-start; margin-top: .6rem; }
.pkg-price .per { font-size: .78rem; color: var(--gray); align-self: flex-end; margin-bottom: .2rem; }
.pkg-desc { font-size: .85rem; color: rgba(245,245,240,.5); line-height: 1.6; margin-bottom: 1.6rem; }
.pkg-features { list-style: none; margin-bottom: 2rem; }
.pkg-features li {
  font-size: .85rem; color: rgba(245,245,240,.7); padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; gap: .6rem;
}
.pkg-features li::before { content: '\2713'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.pkg-cta {
  width: 100%; padding: 13px; border-radius: 6px;
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: .85rem; letter-spacing: .07em; text-transform: uppercase;
  cursor: pointer; transition: var(--transition);
  border: 1px solid var(--gold);
  background: transparent; color: var(--gold);
  text-decoration: none; display: block; text-align: center;
}
.pkg-cta:hover,
.pkg-card.featured .pkg-cta { background: var(--gold); color: var(--black); }
.pkg-card.featured .pkg-cta:hover { background: #fff; border-color: #fff; color: var(--black); }

/* ── CONTACT ── */
#contact { background: var(--black); }
#contact .section-title { color: var(--white); }
#contact .section-sub { color: rgba(245,245,240,.5); }
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.contact-info { margin-top: 1rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(240,192,64,.1); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold); font-size: 1.1rem;
}
.contact-item-label { font-size: .7rem; color: var(--gray); text-transform: uppercase; letter-spacing: .1em; }
.contact-item-val { color: var(--white); font-size: .95rem; margin-top: 2px; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field label { font-size: .72rem; color: var(--gray); text-transform: uppercase; letter-spacing: .1em; }
.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: 12px 16px; color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: .9rem;
  outline: none; transition: border-color .2s;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field select option { background: var(--black); }
.form-submit {
  background: var(--gold); color: var(--black);
  border: none; padding: 14px 36px; border-radius: 6px;
  font-family: 'DM Sans', sans-serif; font-weight: 700;
  font-size: .9rem; letter-spacing: .07em; text-transform: uppercase;
  cursor: pointer; transition: var(--transition); align-self: flex-start;
}
.form-submit:hover { background: #fff; transform: translateY(-2px); }
.form-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }
@media(max-width:768px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── FOOTER ── */
footer {
  background: #050505; border-top: 1px solid rgba(240,192,64,.12);
  padding: 60px 5vw 30px;
  color: rgba(245,245,240,.4);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem;
  color: var(--white); letter-spacing: .1em; margin-bottom: .8rem;
}
.footer-brand-name span { color: var(--gold); }
.footer-desc { font-size: .85rem; line-height: 1.7; max-width: 260px; }
.footer-socials { display: flex; gap: .8rem; margin-top: 1.4rem; }
.footer-social {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: rgba(245,245,240,.5);
  font-size: .85rem; transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}
.footer-social:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(240,192,64,.08);
}
.footer-col-title {
  font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--white); margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-links a {
  color: rgba(245,245,240,.4); text-decoration: none;
  font-size: .85rem; transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.06);
  font-size: .78rem; flex-wrap: wrap; gap: .5rem;
}
.footer-bottom a { color: var(--gold); text-decoration: none; }
@media(max-width:900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:580px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,.93);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-close {
  position: absolute; top: -42px; right: 0;
  width: 34px; height: 34px;
  background: var(--gold); border: none; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--black); font-weight: 700; line-height: 1;
}
.lightbox-close:hover { background: #fff; }
.lightbox iframe { border: none; border-radius: 12px; display: block; }
@media(max-width:768px) {
  .lightbox iframe { width: 90vw; height: 50vw; }
}

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  text-decoration: none; transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s, transform .6s; }
.reveal.visible { opacity: 1; transform: none; }

/* ── Divider ── */
.divider { height: 1px; background: rgba(0,0,0,.08); margin: 0 5vw; }
.divider-dark { height: 1px; background: rgba(255,255,255,.06); }
