/* ═══════════════════════════════════════════════
   TRASH PANDA ROLL-OFFS — GLOBAL DESIGN SYSTEM
   Premium Agency-Level CSS
═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --orange:       #F97316;
  --orange-dark:  #C2410C;
  --orange-xd:    #9A3412;
  --orange-light: #FED7AA;
  --amber:        #F59E0B;
  --blue:         #3B82F6;
  --blue-dark:    #1D4ED8;
  --blue-light:   #93C5FD;
  --black:        #080808;
  --dark:         #111111;
  --dark2:        #181818;
  --dark3:        #202020;
  --steel:        #2A2A2A;
  --steel2:       #363636;
  --gray:         #6B7280;
  --gray-light:   #9CA3AF;
  --white:        #F8F8F8;
  --cream:        #FFF8F0;

  --font-display: 'Black Han Sans', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-orange: 0 20px 60px rgba(249,115,22,0.25);
  --shadow-dark:   0 20px 60px rgba(0,0,0,0.6);
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-family: var(--font-display); letter-spacing: 0.01em; }

.display-huge {
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
}
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.5rem);
  line-height: 0.9;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  line-height: 0.95;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1;
}

.label-tag {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
}

.body-lead {
  font-family: var(--font-cond);
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--gray-light);
}

/* ── COLOR UTILS ── */
.text-orange { color: var(--orange); }
.text-blue { color: var(--blue); }
.text-gray { color: var(--gray-light); }
.text-dark { color: var(--dark); }
.bg-dark1 { background: var(--dark); }
.bg-dark2 { background: var(--dark2); }
.bg-dark3 { background: var(--dark3); }

/* ── DIVIDER ── */
.orange-line {
  width: 64px; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  border-radius: 2px;
  margin: 0.9rem 0 1.4rem;
}
.orange-line.center { margin-left: auto; margin-right: auto; }
.orange-line.lg { width: 120px; height: 4px; }

/* ── BUTTONS ── */
.btn-panda {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-panda::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-panda:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(249,115,22,0.45);
}
.btn-panda:hover::before { opacity: 1; }

.btn-panda-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 26px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.btn-panda-outline:hover {
  background: var(--orange);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(249,115,22,0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}

/* ── BADGE ── */
.badge-orange {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.35);
  color: var(--orange);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}
.badge-blue {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.35);
  color: var(--blue-light);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

/* ── CARD BASE ── */
.card-dark {
  background: var(--dark2);
  border: 1px solid var(--steel);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.card-dark:hover {
  border-color: rgba(249,115,22,0.4);
  transform: translateY(-3px);
  box-shadow: var(--shadow-orange);
}

/* ── SECTION BASE ── */
.section-pad { padding: 72px 0; }
.section-pad-sm { padding: 48px 0; }

/* ── NOISE TEXTURE OVERLAY ── */
.noise::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

/* ── GLOW DOT ── */
.glow-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--orange);
  display: inline-block;
}

/* ── GRADIENT TEXT ── */
.gradient-text {
  background: linear-gradient(135deg, var(--orange) 0%, var(--amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SECTION LABEL ── */
.s-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
}
.s-label span {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ── PHONE BIG ── */
.phone-big {
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
}
.phone-big:hover { color: var(--orange); }
.phone-big i {
  width: 48px; height: 48px;
  background: var(--orange);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-16px) rotate(1deg); }
  66%      { transform: translateY(-8px) rotate(-1deg); }
}
@keyframes pulseGlow {
  0%,100% { opacity: 0.5; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.1); }
}
@keyframes slideRight {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.anim-float { animation: float 5s ease-in-out infinite; }
.anim-pulse { animation: pulseGlow 3s ease-in-out infinite; }

/* ── NAVBAR ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 0;
  transition: var(--transition);
}
.site-nav.scrolled {
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(249,115,22,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
  object-fit: contain;
  border: 2px solid var(--orange);
  box-shadow: 0 0 20px rgba(249,115,22,0.3);
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.1;
  color: var(--white);
}
.nav-logo-text em {
  font-style: normal;
  color: var(--orange);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
  background: rgba(249,115,22,0.08);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--orange);
  border-radius: 50%;
}
.nav-cta-btn {
  font-family: var(--font-cond);
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black) !important;
  background: var(--orange);
  padding: 10px 24px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition) !important;
}
.nav-cta-btn:hover {
  background: var(--orange-dark) !important;
  color: var(--white) !important;
  box-shadow: 0 8px 24px rgba(249,115,22,0.4);
}
.nav-phone {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone i { color: var(--orange); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--steel);
  z-index: 9998;
  padding: 1.5rem;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li { border-bottom: 1px solid var(--steel); }
.mobile-nav ul li a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav ul li a:hover { color: var(--orange); }

/* ── MARQUEE TICKER ── */
.ticker-wrap {
  background: var(--orange);
  overflow: hidden;
  padding: 10px 0;
}
.ticker-track {
  display: flex;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.ticker-item {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.ticker-sep {
  width: 5px; height: 5px;
  background: var(--black);
  border-radius: 50%;
  opacity: 0.4;
  flex-shrink: 0;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--steel);
}
.footer-top {
  padding: 56px 0 40px;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.footer-logo-text em { font-style: normal; color: var(--orange); }
.footer-tagline {
  font-family: var(--font-cond);
  font-size: 0.9rem;
  color: var(--gray);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}
.footer-heading {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--steel);
  padding: 24px 0;
}
.footer-bottom-text {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 0.04em;
}
.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px;
  background: var(--dark3);
  border: 1px solid var(--steel);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
  transform: translateY(-3px);
}

/* ── CONTACT FORM ── */
.form-field { margin-bottom: 1.25rem; }
.form-field label {
  display: block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 0.5rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--dark3);
  border: 1px solid var(--steel2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 18px;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.15);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--steel2); }
.form-field select option { background: var(--dark3); }
.form-field textarea { resize: vertical; min-height: 130px; }

/* ── STARS ── */
.stars { color: var(--orange); letter-spacing: 2px; font-size: 0.9rem; }

/* ── CHECKLIST ── */
.check-list { list-style: none; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--steel);
  font-size: 0.92rem;
  color: var(--gray-light);
  line-height: 1.4;
}
.check-list li:last-child { border-bottom: none; }
.check-list li i { color: var(--orange); margin-top: 2px; font-size: 0.8rem; flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .nav-links, .nav-phone { display: none !important; }
  .nav-hamburger { display: flex; }
  .section-pad { padding: 52px 0; }
}
@media (max-width: 767px) {
  .section-pad { padding: 44px 0; }
}
