@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Oswald:wght@700;800&display=swap');

:root {
  color-scheme: dark;
  --bg-primary: #0D0D11;
  --bg-surface: #16161E;
  --bg-surface-light: #1F1F2B;
  --accent-volt: #FFE600;
  --accent-gold: #FFB800;
  --accent-whatsapp: #25D366;
  --text-primary: #F8FAFC;
  --text-muted: #94A3B8;
  --border-glow: rgba(255, 230, 0, 0.15);
  --glass-bg: rgba(22, 22, 30, 0.85);
  --shadow-volt: 0 0 25px rgba(255, 230, 0, 0.3);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.text-gradient {
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-volt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-volt {
  color: var(--accent-volt);
  text-shadow: 0 0 12px rgba(255, 230, 0, 0.4);
}

.text-gold {
  color: var(--accent-gold);
}

p {
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent-volt);
  color: #000;
  box-shadow: 0 0 15px rgba(255, 230, 0, 0.4);
}

.btn-primary:hover {
  background-color: #fff;
  box-shadow: var(--shadow-volt);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border: 2px solid var(--accent-volt);
}

.btn-outline:hover {
  background-color: rgba(255, 230, 0, 0.1);
  box-shadow: var(--shadow-volt);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: var(--accent-whatsapp);
  color: #fff;
  font-weight: 700;
  width: 100%;
  padding: 16px;
  font-size: 1.15rem;
}

.btn-whatsapp:hover {
  background-color: #20b858;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

/* Icons in buttons and badges */
.icon {
  width: 22px;
  height: 22px;
  vertical-align: middle;
}

/* Sticky Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glow);
  padding: 15px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-container img {
  height: 72px;
  max-height: 80px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.city-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 5%;
  text-align: center;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 13, 17, 0.65) 0%, rgba(13, 13, 17, 0.95) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 230, 0, 0.12);
  color: var(--accent-volt);
  border: 1px solid var(--accent-volt);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(255, 230, 0, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); box-shadow: 0 0 25px rgba(255, 230, 0, 0.4); }
  100% { transform: scale(1); }
}

.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}

.hero-content p {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: 700px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Marquee Section */
.marquee-container {
  background: var(--accent-volt);
  color: #000;
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 2px;
  white-space: nowrap;
}

.marquee-content {
  display: flex;
  gap: 40px;
  animation: marquee 25s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Section Common */
.section {
  padding: 90px 5%;
  max-width: 1350px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto;
}

/* Value Props Grid (Why Hire The Beast) */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.value-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 35px 25px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent-volt);
  opacity: 0;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  background: var(--bg-surface-light);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-card);
}

.value-card:hover::before {
  opacity: 1;
}

.value-icon-box {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background: rgba(255, 230, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

/* Media Showcase Grid (With Grey Placeholders as requested!) */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
}

.media-item {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}

.media-item:hover {
  transform: scale(1.02);
  border-color: var(--accent-volt);
  box-shadow: 0 0 20px rgba(255, 230, 0, 0.2);
}

/* Universal Placeholder Styling */
.placeholder-box {
  width: 100%;
  background: #20202C;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  text-align: center;
  padding: 30px 20px;
  border: 2px dashed #404055;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.placeholder-box.ratio-16-9 { aspect-ratio: 16 / 9; }
.placeholder-box.ratio-9-16 { aspect-ratio: 9 / 16; }
.placeholder-box.ratio-4-5  { aspect-ratio: 4 / 5; }
.placeholder-box.ratio-1-1  { aspect-ratio: 1 / 1; }

.placeholder-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-volt);
  margin-top: 12px;
}

.placeholder-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.5);
  padding: 4px 12px;
  border-radius: 6px;
  margin-top: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.placeholder-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-volt);
  color: #000;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.media-caption {
  padding: 16px 20px;
  background: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.media-caption h4 {
  font-size: 1.15rem;
}

/* Pricing Section */
.pricing-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
}

.pricing-card.popular {
  border: 2px solid var(--accent-volt);
  background: linear-gradient(180deg, rgba(255, 230, 0, 0.05) 0%, var(--bg-surface) 100%);
  box-shadow: var(--shadow-volt);
  transform: scale(1.04);
  z-index: 2;
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-volt);
  color: #000;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.pricing-header h3 {
  font-size: 1.6rem;
  color: var(--text-primary);
}

.price-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-volt);
  margin-top: 15px;
}

.price-amount span {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  margin-bottom: 35px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--text-primary);
  font-size: 1rem;
}

/* Modal and Booking Form */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--bg-surface);
  border: 1px solid var(--accent-volt);
  border-radius: 16px;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 35px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  opacity: 0.7;
  transition: var(--transition);
}

.modal-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input, .form-select {
  width: 100%;
  background: #111118;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent-volt);
  box-shadow: 0 0 10px rgba(255, 230, 0, 0.2);
}

.calc-box {
  background: rgba(255, 230, 0, 0.08);
  border: 1px solid var(--border-glow);
  padding: 20px;
  border-radius: 10px;
  margin: 25px 0;
  text-align: center;
}

.calc-box p {
  margin: 5px 0;
  color: var(--text-primary);
}

/* Upload Dropzone */
.file-upload-box {
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 20px;
}

.file-upload-box:hover {
  border-color: var(--accent-volt);
  background: rgba(255, 230, 0, 0.05);
}

.file-upload-input {
  display: none;
}

/* Footer */
.footer {
  background: #08080A;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 5% 30px;
  margin-top: 60px;
}

.footer-content {
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  height: 88px;
  max-height: 100px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer-links h4 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-volt);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #64748B;
  font-size: 0.9rem;
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .media-grid, .pricing-matrix {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card.popular {
    transform: none;
  }
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    padding: 15px;
  }
  .city-pills {
    display: none; /* Hide on small mobiles to keep clean */
  }
  .media-grid, .pricing-matrix {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 60px 5%;
  }
  .cutout-showcase-container {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
}

/* Instagram Reel Embed Showcase */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  justify-items: center;
}

.reel-embed-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255, 230, 0, 0.2);
  border-radius: 16px;
  padding: 12px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.reel-embed-card:hover {
  border-color: var(--accent-volt);
  box-shadow: var(--shadow-volt);
  transform: translateY(-4px);
}

.reel-embed-card blockquote.instagram-media {
  margin: 0 !important;
  width: 100% !important;
  min-width: unset !important;
  max-width: 100% !important;
  border-radius: 10px !important;
}

/* Full-Width Creative Black Gorilla Cutout Showcase Section */
.cutout-showcase-fullwidth {
  width: 100%;
  background: linear-gradient(135deg, #FFE600 0%, #FFB800 100%);
  padding: 70px 5%;
  color: #000;
  box-shadow: 0 0 50px rgba(255, 230, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.cutout-showcase-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cutout-showcase-text h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #000;
  margin-bottom: 12px;
}

.cutout-showcase-text p {
  color: #111;
  font-size: 1.25rem;
  font-weight: 500;
  max-width: 600px;
  line-height: 1.6;
}

.cutout-gorilla-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.cutout-gorilla-img {
  max-height: 520px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.6));
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.cutout-gorilla-img:hover {
  transform: scale(1.08) rotate(-2deg);
}

@media (max-width: 992px) {
  .cutout-showcase-inner {
    flex-direction: column;
    text-align: center;
  }
  .cutout-gorilla-img {
    max-height: 380px;
  }
}

/* Horror Jumpscare Overlay */
.jumpscare-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.jumpscare-overlay.active {
  opacity: 1;
  pointer-events: auto;
  animation: jumpscareFlash 0.2s ease-in-out;
}

.jumpscare-img {
  max-width: 92vw;
  max-height: 85vh;
  object-fit: contain;
  transform: scale(0.1);
  filter: drop-shadow(0 0 50px rgba(255, 0, 0, 0.9)) contrast(1.3);
}

.jumpscare-overlay.active .jumpscare-img {
  animation: horrorZoom 0.7s cubic-bezier(0.1, 0.9, 0.2, 1) forwards;
}

@keyframes jumpscareFlash {
  0% { background: rgba(255, 0, 0, 0.85); }
  30% { background: rgba(255, 230, 0, 0.9); }
  60% { background: rgba(255, 0, 0, 0.85); }
  100% { background: rgba(0, 0, 0, 0.95); }
}

@keyframes horrorZoom {
  0% { transform: scale(0.05) rotate(-15deg); }
  35% { transform: scale(1.4) rotate(6deg); }
  65% { transform: scale(1.1) rotate(-3deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* Mobile Accessibility & Header Adaptability */
@media (max-width: 480px) {
  .logo-container img {
    height: 54px;
  }
  .header {
    padding: 10px 4%;
  }
  .btn {
    padding: 12px 18px;
    font-size: 0.95rem;
    min-height: 46px;
  }
  .form-input, .form-select {
    font-size: 16px; /* Prevents iOS auto-zoom on focus */
    min-height: 46px;
  }
}

