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

:root {
  --bg-color: #050505;
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --accent-color: #e0b06b;
  --accent-hover: #f2cd8a;
  --card-bg: rgba(25, 25, 25, 0.6);
  --border-color: rgba(255, 255, 255, 0.1);
  --gradient-dark: linear-gradient(180deg, #050505 0%, #111111 100%);
  --nav-height: 150px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #000000 0%, #1a1a1a 30%, #2c241a 50%, #080808 75%, #000000 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; font-weight: 700; line-height: 1.1; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.heading-xl { font-size: clamp(2.2rem, 4.5vw, 3.5rem); letter-spacing: -0.02em; }
.heading-lg { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
.heading-md { font-size: clamp(1.2rem, 2.2vw, 1.8rem); }
.text-gradient {
  background: linear-gradient(90deg, #fff, var(--text-secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-accent { color: var(--accent-color); }
.text-right { text-align: right; }

.section { padding: 50px 5%; position: relative; z-index: 1; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.grid { display: grid; gap: 2rem; }

.btn {
  display: inline-block; padding: 16px 32px; font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px;
  cursor: pointer; border: none; outline: none; border-radius: 4px; transition: all 0.3s ease;
}
.btn-primary { background-color: var(--accent-color); color: var(--bg-color); }
.btn-primary:hover { background-color: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(224, 176, 107, 0.2); }
.btn-outline { background-color: transparent; border: 1px solid var(--border-color); color: var(--text-primary); }
.btn-outline:hover { border-color: var(--accent-color); color: var(--accent-color); }

.glass-panel {
  background: var(--card-bg); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color); border-radius: 12px;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-color); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-color); }

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 5%;
}

.navbar.hidden {
  transform: translateY(-100%);
}

.navbar.scrolled {
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  height: 80px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 140px; /* Reduced from 220px */
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.navbar.scrolled .nav-logo {
  height: 80px; /* Reduced from 140px */
}

.logo:hover .nav-logo {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a, .dropdown-trigger {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-links a:hover, .dropdown-trigger:hover {
  color: var(--accent-color);
}

/* Dropdown Menu Styles */
.dropdown-container {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 25px);
  left: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  min-width: 280px;
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Invisible bridge to prevent hover loss */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -25px;
  left: 0;
  width: 100%;
  height: 25px;
}

.dropdown-container:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.8rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.5px;
  color: #ccc;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  color: var(--accent-color);
  background: rgba(255, 255, 255, 0.05);
  padding-left: 2rem;
}

.nav-cta {
  padding: 10px 24px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .nav-links, .nav-cta {
    display: none;
  }
  .nav-logo {
    height: 140px;
    margin-left: -20px;
  }
}
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  /* Prevent image jitter during Framer Motion scale transitions */
  will-change: transform, opacity;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 15, 18, 0.4) 0%, rgba(13, 15, 18, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.hero .heading-xl {
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: #ccc;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

/* Controls */
.hero-controls {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  z-index: 10;
}

.hero-arrow {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-arrow:hover {
  background: var(--accent-color);
  color: #000;
  border-color: var(--accent-color);
  transform: scale(1.1);
}

.hero-dots {
  display: flex;
  gap: 12px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dot.active {
  background: var(--accent-color);
  transform: scale(1.5);
}

@media (max-width: 768px) {
  .hero .heading-xl {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-arrow {
    display: none; /* Hide arrows on small screens, rely on dots */
  }
  
  .hero-controls {
    justify-content: center;
  }
}
.clients-section {
  background: var(--gradient-dark);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 1200px) {
  .clients-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 900px) {
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.client-logo {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #e5e5e5, #f5f5f5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  padding: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 1;
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.client-logo span {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: var(--text-primary);
}

.client-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(224, 176, 107, 0.3);
  border-color: var(--accent-color);
}
.services-reference-section {
  width: 100%;
  overflow: hidden;
  background: #030303;
  line-height: 0;
}

.services-reference-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #030303;
  animation: servicesArtworkReveal 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.services-reference-art {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1536 / 1024;
  object-fit: cover;
  object-position: center;
}

.services-ambient-glow,
.services-title-shine,
.services-line-spark,
.services-card-pulse {
  position: absolute;
  pointer-events: none;
}

.services-ambient-glow {
  inset: 10% 0 0;
  background:
    radial-gradient(circle at 50% 19%, rgba(247, 185, 58, 0.16), transparent 17%),
    radial-gradient(circle at 13% 58%, rgba(247, 185, 58, 0.14), transparent 12%),
    radial-gradient(circle at 87% 58%, rgba(247, 185, 58, 0.14), transparent 12%);
  opacity: 0;
  mix-blend-mode: screen;
  animation: servicesAmbientGlow 4s ease-in-out 1s infinite;
}

.services-title-shine {
  left: 19%;
  top: 11%;
  width: 62%;
  height: 14%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 42%,
    rgba(255, 255, 255, 0.58) 49%,
    rgba(245, 185, 52, 0.34) 52%,
    transparent 60%,
    transparent 100%
  );
  transform: translateX(-115%);
  mix-blend-mode: screen;
  animation: servicesTitleShine 5.2s ease-in-out 1.1s infinite;
}

.services-line-spark {
  left: 0;
  top: 71.8%;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    transparent 8%,
    rgba(251, 195, 75, 0.15) 20%,
    rgba(255, 231, 158, 0.9) 50%,
    rgba(251, 195, 75, 0.15) 80%,
    transparent 92%,
    transparent 100%
  );
  filter: blur(0.5px);
  opacity: 0;
  animation: servicesLineSpark 3.8s ease-in-out 1.4s infinite;
}

.services-card-pulse {
  width: 2.2%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 216, 117, 0.55);
  box-shadow:
    0 0 12px rgba(255, 216, 117, 0.98),
    0 0 28px rgba(207, 132, 6, 0.62);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
  animation: servicesCardPulse 2.6s ease-out infinite;
}

.services-card-pulse-one {
  left: 13.7%;
  top: 72.2%;
}

.services-card-pulse-two {
  left: 28.7%;
  top: 72.2%;
}

.services-card-pulse-three {
  left: 44%;
  top: 72.2%;
}

.services-card-pulse-four {
  left: 59.1%;
  top: 72.2%;
}

.services-card-pulse-five {
  left: 74.6%;
  top: 72.2%;
}

.services-card-pulse-six {
  left: 89.8%;
  top: 72.2%;
}

@keyframes servicesArtworkReveal {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes servicesAmbientGlow {
  0%,
  100% {
    opacity: 0;
  }
  45% {
    opacity: 0.88;
  }
}

@keyframes servicesTitleShine {
  0%,
  60% {
    opacity: 0;
    transform: translateX(-115%);
  }
  68% {
    opacity: 0.85;
  }
  84%,
  100% {
    opacity: 0;
    transform: translateX(115%);
  }
}

@keyframes servicesLineSpark {
  0%,
  100% {
    opacity: 0;
    transform: scaleX(0.75);
  }
  42% {
    opacity: 0.85;
    transform: scaleX(1);
  }
}

@keyframes servicesCardPulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.65);
  }
  20% {
    opacity: 0.85;
  }
  70%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.8);
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-reference-frame,
  .services-ambient-glow,
  .services-title-shine,
  .services-line-spark,
  .services-card-pulse {
    animation: none;
  }
}

@media (max-width: 768px) {
  .services-reference-frame {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .services-reference-art {
    width: 100%;
    object-fit: contain;
  }
}
.portfolio-section {
  padding: 100px 0 20px;
  background: var(--bg-primary, #0a0a0a);
  overflow: hidden;
}

.portfolio-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 3rem;
  color: var(--text-primary, #fff);
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--accent-color, #c5a059);
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.portfolio-category {
  margin-bottom: 80px;
}

.portfolio-category:last-child {
  margin-bottom: 0;
}

.category-title {
  font-size: 1.8rem;
  color: var(--text-secondary, #eee);
  margin-bottom: 30px;
  padding-left: 20px;
  border-left: 4px solid var(--accent-color, #c5a059);
}

.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-portfolio 90s linear infinite;
}

.slider-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-portfolio {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 10px));
  }
}

.portfolio-item {
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.portfolio-item:hover {
  transform: scale(1.05);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.portfolio-item-films {
  width: 200px;
  height: 300px;
}

.portfolio-item-films img {
  object-fit: cover;
}

.portfolio-item-cobranding {
  width: 250px;
  height: 140px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e5e5e5, #f5f5f5);
}

.portfolio-item-cobranding img {
  object-fit: contain;
  mix-blend-mode: multiply;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .portfolio-item-films {
    width: 150px;
    height: 225px;
  }
  
  .portfolio-item-cobranding {
    width: 200px;
    height: 110px;
  }
}
.testimonials-innovative-section {
  background: var(--bg-color);
  padding: 120px 5% 40px;
  position: relative;
  overflow: hidden;
}

.testimonials-split-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  margin-top: 5rem;
  align-items: center;
}

/* Left Side: Quote Area */
.testimonials-quote-area {
  position: relative;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  border: 1px solid rgba(224, 176, 107, 0.1);
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.huge-quote-bg {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 150px;
  height: 150px;
  color: var(--accent-color);
  opacity: 0.05;
  z-index: 1;
  pointer-events: none;
}

.active-quote-content {
  position: relative;
  z-index: 2;
}

.rating-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 2rem;
}

.star {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.quote-text {
  font-size: 2.2rem;
  line-height: 1.4;
  color: #fff;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 2rem;
}

.mobile-author-info {
  display: none;
}

.quote-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 24px 24px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--accent-color);
  width: 0%;
}

@keyframes fillProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* Right Side: Authors List */
.testimonials-authors-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.author-list-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 15px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  background: transparent;
}

.author-indicator {
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.author-details h4 {
  color: #888;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  margin-bottom: 0.2rem;
}

.author-details span {
  color: #555;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

/* Hover State */
.author-list-item:hover .author-indicator {
  width: 40px;
  background: rgba(224, 176, 107, 0.5);
}

.author-list-item:hover .author-details h4 {
  color: #ddd;
}

/* Active State */
.author-list-item.active {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(224, 176, 107, 0.2);
}

.author-list-item.active .author-indicator {
  width: 50px;
  background: var(--accent-color);
}

.author-list-item.active .author-details h4 {
  color: #fff;
  font-weight: 600;
}

.author-list-item.active .author-details span {
  color: var(--accent-color);
}

/* Responsive */
@media (max-width: 1024px) {
  .testimonials-split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .testimonials-quote-area {
    min-height: 350px;
  }
  
  .quote-text {
    font-size: 1.8rem;
  }
  
  .mobile-author-info {
    display: block;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .mobile-author-info h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
  }
  
  .testimonials-authors-list {
    display: none; /* Hide the vertical list on mobile/tablet */
  }
}
.footer {
  background: transparent;
  color: #fff;
  padding: 60px 5% 20px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto 40px;
}

.footer-brand .footer-logo {
  max-width: 180px;
  margin-bottom: 1.5rem;
}

.footer-tagline {
  color: #888;
  line-height: 1.5;
  max-width: 350px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
  background: var(--accent-color);
  color: #000;
  border-color: var(--accent-color);
}

.footer-col h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col ul li a, .footer-col ul li span {
  color: #aaa;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-col ul li a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-contact-item svg {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.footer-bottom {
  text-align: center;
  color: #666;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* =======================================
   ABOUT US SECTION
   ======================================= */
.about-innovative-section {
  background: transparent;
  padding: 40px 5% 20px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.about-bg-text {
  position: absolute;
  top: 10%;
  left: -5%;
  font-size: 20vw;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  text-transform: uppercase;
}

.about-innovative-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-left {
  position: sticky;
  top: 150px;
  height: max-content;
}

.about-left h2 {
  font-size: clamp(3rem, 5vw, 5rem);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.about-left .text-accent {
  color: var(--accent-color);
  display: block;
}

.about-img-wrapper {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.05);
  transition: transform 0.8s ease;
}

.about-img-wrapper:hover img {
  transform: scale(1);
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-top: 30px;
}

.about-highlight-box {
  background: rgba(224, 176, 107, 0.05);
  border-left: 4px solid var(--accent-color);
  padding: 2.5rem;
  border-radius: 0 16px 16px 0;
}

.about-highlight-text {
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin: 0;
}

.about-body-text {
  font-size: 1.1rem;
  color: #aaa;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-body-text p {
  position: relative;
  padding-left: 25px;
  margin: 0;
}

.about-body-text p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: var(--accent-color);
  border-radius: 50%;
}

.about-footer-highlight {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1rem;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .about-innovative-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .about-left {
    position: relative;
    top: 0;
  }
  .about-bg-text {
    font-size: 25vw;
    top: 5%;
  }
}

@media (max-width: 768px) {
  .about-innovative-section {
    padding: 60px 5%;
  }
  .about-highlight-text {
    font-size: 1.3rem;
  }
  .about-body-text {
    font-size: 1rem;
  }
  .about-footer-highlight {
    font-size: 1.6rem;
  }
}

/* =======================================
   WHY CHOOSE US SECTION
   ======================================= */
.wsua-section {
  background-color: transparent;
  color: #fff;
  padding: 40px 5% 80px;
  position: relative;
  overflow: hidden;
}

.wsua-header {
  text-align: center;
  margin-bottom: 5rem;
}

.wsua-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

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

.section-subtitle {
  color: #888;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.bento-card {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(224, 176, 107, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(224, 176, 107, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

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

.bento-icon {
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-bottom: auto; /* Pushes text to bottom */
  background: rgba(224, 176, 107, 0.1);
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  border: 1px solid rgba(224, 176, 107, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bento-card:hover .bento-icon {
  background: var(--accent-color);
  color: #000;
  transform: scale(1.1) rotate(5deg);
}

.bento-card h3 {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 2;
  font-weight: 600;
}

.bento-card p {
  color: #888;
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Span classes for Bento Layout */
.span-2 {
  grid-column: span 2;
}

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .span-2 {
    grid-column: span 1;
  }
  .bento-card {
    min-height: 220px;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .bento-card {
    padding: 2rem;
    min-height: 200px;
  }
}

/* =======================================
   PROCESS SECTION
   ======================================= */
.process-reference-section {
  width: 100%;
  overflow: hidden;
  background: transparent;
  line-height: 0;
}

.process-reference-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent;
  animation: processArtReveal 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.process-reference-art {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1774 / 887;
  object-fit: cover;
  object-position: center;
}

.process-shine,
.process-ribbon-glow,
.process-pulse {
  position: absolute;
  pointer-events: none;
}

.process-shine {
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 43%,
    rgba(255, 255, 255, 0.52) 49%,
    rgba(245, 188, 69, 0.28) 52%,
    transparent 59%,
    transparent 100%
  );
  mix-blend-mode: screen;
  transform: translateX(-90%);
  animation: processShine 4.8s ease-in-out 1s infinite;
}

.process-ribbon-glow {
  left: 53.8%;
  top: 12.5%;
  width: 31%;
  height: 76%;
  border-radius: 48%;
  background:
    radial-gradient(circle at 74% 11%, rgba(255, 221, 137, 0.58), transparent 12%),
    radial-gradient(circle at 52% 45%, rgba(255, 241, 194, 0.55), transparent 14%),
    radial-gradient(circle at 40% 77%, rgba(255, 218, 126, 0.44), transparent 13%);
  filter: blur(10px);
  opacity: 0;
  animation: processRibbonGlow 3.6s ease-in-out 1.25s infinite;
}

.process-pulse {
  width: 7.6%;
  aspect-ratio: 1;
  border: 2px solid rgba(207, 132, 6, 0.5);
  border-radius: 50%;
  box-shadow: 0 0 26px rgba(207, 132, 6, 0.22);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.82);
  animation: processPulse 2.7s ease-out infinite;
}

.process-pulse-research {
  left: 71.5%;
  top: 12.2%;
}

.process-pulse-strategy {
  left: 61.1%;
  top: 28.6%;
}

.process-pulse-creative {
  left: 79.5%;
  top: 43.8%;
}

.process-pulse-media {
  left: 56.2%;
  top: 62.8%;
}

.process-pulse-performance {
  left: 78.5%;
  top: 82.6%;
}

@keyframes processArtReveal {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes processShine {
  0%,
  58% {
    transform: translateX(-90%);
    opacity: 0;
  }
  66% {
    opacity: 0.92;
  }
  82%,
  100% {
    transform: translateX(90%);
    opacity: 0;
  }
}

@keyframes processRibbonGlow {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.98);
  }
  45% {
    opacity: 0.72;
    transform: scale(1.02);
  }
}

@keyframes processPulse {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.78);
  }
  18% {
    opacity: 0.75;
  }
  72%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-reference-frame,
  .process-shine,
  .process-ribbon-glow,
  .process-pulse {
    animation: none;
  }
}

@media (max-width: 768px) {
  .process-reference-frame {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .process-reference-art {
    width: 100%;
    object-fit: contain;
  }
}

/* =======================================
   COMMUNICATION MODEL SECTION
   ======================================= */
.c-model-section {
  background-color: var(--bg-color);
  position: relative;
  overflow: hidden;
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.c-model-section .subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.c-model-section .heading-md {
  color: #ffffff;
}

.model-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
}

.model-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
}

.model-circle:hover {
  border-color: var(--accent-color);
  box-shadow: 0 0 30px rgba(224, 176, 107, 0.15);
  transform: translateY(-10px);
  z-index: 10;
}

.circle-content h3 {
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.circle-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Interlocking effect on desktop */
@media (min-width: 900px) {
  .model-container {
    gap: -20px;
  }
  .model-circle:nth-child(2) {
    margin: 0 -40px;
    margin-top: 60px;
  }
}

/* =======================================
   MEDIA ANALYTICS SECTION
   ======================================= */
.analytics-section {
  background-color: var(--bg-color);
  padding: 80px 5%;
}

.analytics-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 1.5rem auto 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 2rem;
}

.stat-card-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 40px rgba(224, 176, 107, 0.15);
}

.stat-number {
  font-size: 3.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-line {
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
  margin: 1rem 0;
  transition: width 0.3s ease;
}

.stat-card:hover .stat-line {
  width: 80px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.8;
}

.mb-12 {
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 2.5rem;
  }
  .stat-card {
    height: 160px;
  }
}

/* =======================================
   FILM WORK SECTION
   ======================================= */
.film-section {
  background-color: var(--bg-color);
}

.film-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.film-card {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.film-image {
  aspect-ratio: 2 / 3;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0a0a0a;
  transition: transform 0.6s ease;
}

.film-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  opacity: 0.8;
  transition: all 0.4s ease;
}

.play-icon {
  font-size: 3rem;
  color: var(--text-primary);
  align-self: center;
  margin-top: auto;
  margin-bottom: auto;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
}

.film-info {
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.category {
  color: var(--accent-color);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.film-info h3 {
  font-size: 1.5rem;
}

.film-card:hover .film-image {
  transform: scale(1.05);
}

.film-card:hover .film-overlay {
  opacity: 1;
}

.film-card:hover .play-icon {
  opacity: 1;
  transform: scale(1);
  color: var(--accent-color);
}

.film-card:hover .film-info {
  transform: translateY(0);
}

/* =======================================
   CTA SECTION
   ======================================= */
.cta-section {
  position: relative;
  background: var(--bg-color);
  padding: 80px 5%;
}

.cta-content {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, rgba(25, 25, 25, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
  border: 1px solid var(--border-color);
  border-radius: 20px;
}

.cta-section .heading-lg {
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.cta-btn {
  font-size: 1.1rem;
  padding: 18px 40px;
}

/* Editorial Theme for About Page */
.editorial-theme {
  background-color: var(--bg-primary);
  color: #fff;
}

.editorial-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 150px;
  overflow: hidden;
}

.editorial-marquee {
  position: absolute;
  top: 20%;
  left: 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}

.marquee-content {
  display: inline-block;
  animation: marquee 30s linear infinite;
  font-size: 15vw;
  font-weight: 900;
  line-height: 1;
}

.marquee-content span {
  padding: 0 2rem;
}

.marquee-content .outline {
  -webkit-text-stroke: 2px #fff;
  color: transparent;
}

.marquee-content .dot {
  color: var(--accent-color);
  font-size: 8vw;
  vertical-align: middle;
}

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

.editorial-title {
  position: relative;
  z-index: 1;
  font-size: clamp(2.2rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.editorial-title .text-outline {
  -webkit-text-stroke: 1px #fff;
  color: transparent;
}

.our-story-typographic {
  padding: 120px 0;
  position: relative;
}

.typographic-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  position: relative;
}

.typographic-left {
  position: relative;
  padding-left: 4rem;
}

.sticky-content {
  position: sticky;
  top: 150px;
}

.massive-title {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 2rem;
}

.accent-separator {
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  margin-bottom: 3rem;
  border-radius: 2px;
}

.floating-metrics {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.f-metric {
  display: flex;
  flex-direction: column;
}

.f-metric .number {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.f-metric .label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 5px;
}

.typographic-right {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-top: 5rem;
}

.story-paragraph-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.story-paragraph-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
}

.card-number {
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 10rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.card-content {
  position: relative;
  z-index: 1;
}

.card-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.card-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #bbb;
  font-weight: 300;
}

@media (max-width: 1024px) {
  .typographic-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .typographic-left {
    padding-left: 0;
  }
  
  .sticky-content {
    position: relative;
    top: 0;
  }

  .floating-metrics {
    flex-direction: row;
    gap: 3rem;
  }
  
  .typographic-right {
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .editorial-hero {
    min-height: 70vh;
    padding-top: 100px;
  }
  
  .floating-metrics {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .story-paragraph-card {
    padding: 2rem;
  }
  
  .card-number {
    font-size: 6rem;
    top: 0;
    right: 0;
  }
}

.director-section {
  background: #060606;
  padding: 120px 5%;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(224, 176, 107, 0.1);
}

.director-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 1;
  opacity: 0.15;
  pointer-events: none;
  mix-blend-mode: screen;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  top: -10%;
  left: -5%;
  animation: floatOrb 20s infinite ease-in-out alternate;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #e0b06b 0%, transparent 75%);
  bottom: -15%;
  right: -5%;
  animation: floatOrb 25s infinite ease-in-out alternate-reverse;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #8a632e 0%, transparent 70%);
  top: 40%;
  left: 45%;
  animation: floatOrb 18s infinite ease-in-out alternate;
}

@keyframes floatOrb {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(40px, 30px) scale(1.15);
  }
}

.director-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.director-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.director-image-wrapper-premium {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 28px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(224, 176, 107, 0.2) 0%, rgba(10, 10, 10, 0.8) 100%);
  border: 1px solid rgba(224, 176, 107, 0.15);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
  cursor: pointer;
  overflow: hidden;
}

.director-image-bg-premium {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-image: url('assets/divyanshu.jpg');
  background-size: cover;
  background-position: top center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
  filter: grayscale(15%) contrast(1.05);
}

.director-image-wrapper-premium:hover .director-image-bg-premium {
  transform: scale(1.06);
  filter: grayscale(0%) contrast(1.1);
}

.director-glare-effect {
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(224, 176, 107, 0.15) 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  transform: skewX(-20deg);
  transition: none;
  pointer-events: none;
  z-index: 3;
}

.director-image-wrapper-premium:hover .director-glare-effect {
  left: 150%;
  transition: left 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.director-gold-corner-top,
.director-gold-corner-bottom {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid var(--accent-color);
  pointer-events: none;
  z-index: 4;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.7;
}

.director-gold-corner-top {
  top: 24px;
  left: 24px;
  border-right: none;
  border-bottom: none;
}

.director-gold-corner-bottom {
  bottom: 24px;
  right: 24px;
  border-left: none;
  border-top: none;
}

.director-image-wrapper-premium:hover .director-gold-corner-top {
  top: 16px;
  left: 16px;
  width: 50px;
  height: 50px;
  opacity: 1;
}

.director-image-wrapper-premium:hover .director-gold-corner-bottom {
  bottom: 16px;
  right: 16px;
  width: 50px;
  height: 50px;
  opacity: 1;
}

.director-floating-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(224, 176, 107, 0.3);
  padding: 8px 18px;
  border-radius: 50px;
  z-index: 4;
}

.badge-year {
  color: var(--accent-color);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.director-content-wrapper-premium {
  color: white;
}

.badge-luxury {
  background: rgba(224, 176, 107, 0.08);
  color: var(--accent-color);
  border: 1px solid rgba(224, 176, 107, 0.25);
  padding: 6px 14px;
  font-size: 0.8rem;
  border-radius: 50px;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.director-name-premium {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
}

.text-accent-gold {
  color: var(--accent-color);
  background: linear-gradient(135deg, #f3e7e9 0%, #e3eeff 99%, #e0b06b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 30px rgba(224, 176, 107, 0.2);
}

.accent-separator-gold {
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
  margin-bottom: 2.5rem;
  border-radius: 2px;
}

.director-bio-premium p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #c5c5c5;
  margin-bottom: 1.5rem;
}

@media (max-width: 1200px) {
  .director-grid {
    gap: 3.5rem;
  }
}

@media (max-width: 1024px) {
  .director-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .director-image-wrapper-premium {
    max-width: 550px;
    margin: 0 auto;
  }
  
  .director-section {
    padding: 100px 5%;
  }
}

@media (max-width: 768px) {
  .director-section {
    padding: 80px 5%;
  }
  
  .director-name-premium {
    font-size: 2.8rem;
  }
  
  .director-bio-premium p {
    font-size: 1rem;
  }
}

.team-section {
  background: var(--bg-color);
  padding: 60px 5%;
  position: relative;
}

.team-interactive-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 4rem;
}

.team-main-display {
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  background: linear-gradient(145deg, rgba(30, 30, 30, 0.4) 0%, rgba(10, 10, 10, 0.8) 100%);
  border: 1px solid rgba(224, 176, 107, 0.1);
}

.team-member-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
}

.team-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 350px;
  overflow: hidden;
}

.team-image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, var(--accent-color) 0%, transparent 70%);
  opacity: 0.1;
  z-index: 1;
}

.team-main-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0a0a0a;
  object-position: center;
  z-index: 2;
  filter: grayscale(0%);
  transition: filter 0.5s ease;
}

.team-member-content:hover .team-main-image {
  filter: contrast(105%);
}

.team-bio-wrapper {
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-name {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.team-headline {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.team-bio-text p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.team-bio-text p:last-child {
  margin-bottom: 0;
  font-style: italic;
  color: #fff;
  border-left: 2px solid var(--accent-color);
  padding-left: 15px;
  margin-top: 1.5rem;
}

.team-selectors {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}

.team-selector-item.highlighted-selector {
  background: rgba(224, 176, 107, 0.04);
  border: 1px solid rgba(224, 176, 107, 0.2);
  position: relative;
  box-shadow: 0 0 15px rgba(224, 176, 107, 0.05);
}

.team-selector-item.highlighted-selector:hover {
  background: rgba(224, 176, 107, 0.08);
  box-shadow: 0 0 20px rgba(224, 176, 107, 0.1);
}

.team-selector-item.highlighted-selector.active {
  background: rgba(224, 176, 107, 0.15);
  border-color: var(--accent-color);
  box-shadow: 0 0 25px rgba(224, 176, 107, 0.2);
}

.mini-partner-label {
  display: block;
  font-size: 0.65rem !important;
  text-transform: uppercase;
  background: var(--accent-color);
  color: #000;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  width: fit-content;
  margin-top: 3px;
  letter-spacing: 0.5px;
}

.partner-highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-color);
  background: rgba(224, 176, 107, 0.1);
  padding: 6px 14px;
  border-radius: 50px;
  width: fit-content;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(224, 176, 107, 0.3);
  letter-spacing: 1.5px;
  box-shadow: 0 0 15px rgba(224, 176, 107, 0.1);
}

.partner-highlight-badge .sparkle-icon {
  font-size: 0.95rem;
  color: #fff;
  animation: sparkle-glow 1.5s infinite alternate;
}

@keyframes sparkle-glow {
  from { transform: scale(0.9); opacity: 0.8; }
  to { transform: scale(1.1); opacity: 1; }
}

.team-selector-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 15px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.team-selector-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.team-selector-item.active {
  background: rgba(224, 176, 107, 0.1);
  border-color: rgba(224, 176, 107, 0.4);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.team-thumbnail {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  filter: grayscale(50%);
}

.team-selector-item.active .team-thumbnail {
  border-color: var(--accent-color);
  filter: grayscale(0%);
}

.team-selector-info h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.team-selector-info span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 1400px) {
  .team-selectors {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .team-selectors {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-member-content {
    grid-template-columns: 1fr;
  }
  
  .team-image-wrapper {
    min-height: 400px;
  }
  
  .team-bio-wrapper {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .team-selectors {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .team-name {
    font-size: 2.2rem;
  }
  
  .team-image-wrapper {
    min-height: 350px;
  }
}

/* --- Content from src/pages/BrandStrategyPage.css --- */
.brand-strategy-page {
  background-color: var(--bg-primary);
  color: #fff;
  min-height: 100vh;
}

.bs-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}

.bs-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: radial-gradient(circle at 50% 50%, rgba(20, 20, 20, 1) 0%, rgba(5, 5, 5, 1) 100%);
}

.bs-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  z-index: 0;
}

.bs-orb-1 {
  width: 600px;
  height: 600px;
  background: var(--accent-color);
  top: -200px;
  right: -100px;
  animation: float 10s ease-in-out infinite alternate;
}

.bs-orb-2 {
  width: 500px;
  height: 500px;
  background: #333;
  bottom: -100px;
  left: -200px;
  animation: float 12s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(50px) scale(1.1); }
}

.bs-marquee {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}

.bs-marquee-content {
  display: inline-block;
  animation: bsMarquee 40s linear infinite;
  font-size: 15vw;
  font-weight: 900;
  line-height: 1;
}

.bs-marquee-content span {
  padding: 0 2rem;
}

.bs-marquee-content .outline {
  -webkit-text-stroke: 2px #fff;
  color: transparent;
}

.bs-marquee-content .dot {
  color: var(--accent-color);
  font-size: 8vw;
  vertical-align: middle;
}

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

.bs-hero-content {
  position: relative;
  z-index: 1;
}

.bs-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent-color);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.bs-title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.bs-title .text-outline {
  -webkit-text-stroke: 1px #fff;
  color: transparent;
}

.bs-visual-section {
  padding: 80px 0 60px 0;
  position: relative;
  z-index: 2;
}

.bs-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.bs-visual-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  max-width: 450px;
  margin: 0 auto;
}

.bs-visual-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.5s ease;
}

.bs-visual-image-wrapper:hover .bs-visual-image {
  transform: scale(1.03);
}

.bs-visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: var(--accent-color);
  filter: blur(100px);
  opacity: 0.15;
  z-index: 1;
}

.bs-visual-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.bs-text-block {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s ease;
}

.bs-text-block:hover {
  border-left-color: var(--accent-color);
}

.bs-text-number {
  position: absolute;
  top: -10px;
  left: -40px;
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  transition: color 0.3s ease, transform 0.3s ease;
}

.bs-text-block:hover .bs-text-number {
  color: rgba(212, 175, 55, 0.2);
  transform: translateX(-10px);
}

.bs-text-block p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #ccc;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 1024px) {
  
  .bs-visual-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .bs-hero {
    min-height: 70vh;
  }
  
  .bs-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
  
  .bs-text-block {
    padding-left: 1.5rem;
  }
}

/* EXPERTISE SECTION */
.bs-expertise {
  padding: 70px 0;
  position: relative;
  background: var(--bg-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bs-expertise-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.bs-expertise-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.bs-expertise-line {
  height: 2px;
  width: 80px;
  background: var(--accent-color);
  margin: 1.5rem auto 0;
}

.bs-expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.bs-expertise-card {
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}

.bs-expertise-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(20, 20, 20, 0.9);
}

.expertise-number {
  font-family: 'Outfit', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: -10px;
  right: 10px;
  line-height: 1;
  transition: color 0.4s ease;
}

.bs-expertise-card:hover .expertise-number {
  color: rgba(212, 175, 55, 0.1);
}

.expertise-content {
  position: relative;
  z-index: 2;
}

.expertise-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.expertise-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #aaa;
  font-weight: 300;
}

.expertise-hover-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.bs-expertise-card:hover .expertise-hover-glow {
  transform: scaleX(1);
}

@media (max-width: 1024px) {
  .bs-expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bs-expertise-grid {
    grid-template-columns: 1fr;
  }
  
  .bs-expertise-card {
    padding: 2rem;
  }
}

/* PROCESS TIMELINE SECTION */
.bs-process {
  padding: 70px 0;
  background: var(--bg-primary);
  position: relative;
}

.bs-process-header {
  text-align: center;
  margin-bottom: 3rem;
}

.bs-process-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.bs-process-line {
  height: 2px;
  width: 80px;
  background: var(--accent-color);
  margin: 1.5rem auto 0;
}

.bs-timeline-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.bs-timeline-center-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-50%);
}

.bs-timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  position: relative;
  width: 100%;
}

.bs-timeline-item.left {
  flex-direction: row-reverse;
}

.bs-timeline-content {
  width: 45%;
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.bs-timeline-item:hover .bs-timeline-content {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
}

.bs-timeline-number {
  font-family: 'Outfit', sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  position: absolute;
  top: -15px;
  right: 15px;
  line-height: 1;
}

.bs-timeline-item.left .bs-timeline-number {
  right: auto;
  left: 15px;
}

.bs-timeline-content h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.bs-timeline-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ccc;
  font-weight: 300;
  margin: 0;
  position: relative;
  z-index: 1;
}

.bs-timeline-node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s ease;
  z-index: 2;
}

.bs-node-inner {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-color);
  transform: scale(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bs-timeline-item:hover .bs-timeline-node {
  border-color: var(--accent-color);
}

.bs-timeline-item:hover .bs-node-inner {
  transform: scale(1);
  box-shadow: 0 0 15px var(--accent-color);
}

@media (max-width: 768px) {
  .bs-timeline-center-line {
    left: 20px;
  }
  
  .bs-timeline-item {
    flex-direction: row;
    justify-content: flex-end;
  }
  
  .bs-timeline-item.left {
    flex-direction: row;
  }
  
  .bs-timeline-content {
    width: calc(100% - 60px);
    padding: 2rem;
  }
  
  .bs-timeline-node {
    left: 20px;
  }
  
  .bs-timeline-item.left .bs-timeline-number {
    right: 15px;
    left: auto;
  }
}

/* WHY CHOOSE US SECTION */
.bs-why-choose {
  padding: 70px 0;
  background: var(--bg-primary);
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bs-why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.bs-why-left {
  position: relative;
  height: 100%;
}

.bs-why-sticky {
  position: sticky;
  top: 120px;
}

.bs-why-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.bs-why-line {
  height: 2px;
  width: 80px;
  background: var(--accent-color);
  margin-bottom: 2.5rem;
}

.bs-why-image-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  /* Dynamic morphing shape */
  border-radius: 150px 30px 150px 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  animation: floatImage 8s ease-in-out infinite, morphShape 15s ease-in-out infinite alternate;
  border: 2px solid rgba(212, 175, 55, 0.2);
}

.bs-why-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  animation: pulseGlow 4s ease-in-out infinite alternate;
}

.bs-why-image {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.1);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bs-why-image-container:hover .bs-why-image {
  transform: scale(1.18) rotate(1deg);
}

.bs-why-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(5,5,5,0.7), transparent 60%);
  z-index: 2;
  pointer-events: none;
}

@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-25px); }
  100% { transform: translateY(0); }
}

@keyframes morphShape {
  0% { border-radius: 150px 30px 150px 30px; }
  33% { border-radius: 30px 150px 30px 150px; }
  66% { border-radius: 100px 80px 150px 50px; }
  100% { border-radius: 150px 30px 150px 30px; }
}

@keyframes pulseGlow {
  0% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.9); }
  100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.bs-why-right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.bs-why-card {
  display: flex;
  gap: 2rem;
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.bs-why-card:hover {
  transform: translateX(-10px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.5);
}

.bs-why-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  transition: background 0.4s ease, color 0.4s ease;
}

.bs-why-icon svg {
  width: 30px;
  height: 30px;
}

.bs-why-card:hover .bs-why-icon {
  background: var(--accent-color);
  color: #000;
}

.bs-why-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.bs-why-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #aaa;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 1024px) {
  .bs-why-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .bs-why-sticky {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .bs-why-card {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
  }
}

/* Elegant CTA Section */
.bs-cta-section {
  padding: 80px 0 100px 0;
  position: relative;
  background-color: #050505;
  overflow: hidden;
}

.bs-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(20, 20, 20, 1) 0%, rgba(0, 0, 0, 1) 100%);
  z-index: 0;
}

.bs-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}

.bs-cta-box {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 4.5rem;
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 24px;
  backdrop-filter: blur(15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.bs-cta-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bs-cta-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #aaa;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.bs-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.bs-cta-btn {
  padding: 1rem 2.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.bs-cta-btn.btn-primary {
  background-color: var(--accent-color);
  color: #000;
  border: 1px solid var(--accent-color);
}

.bs-cta-btn.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.bs-cta-btn.btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bs-cta-btn.btn-secondary:hover {
  border-color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .bs-cta-box {
    padding: 3rem 1.5rem;
  }
}


/* --- Content from src/pages/DigitalMarketingPage.css --- */
.production-page {
  background-color: var(--bg-primary);
  color: #fff;
  min-height: 100vh;
}

/* HERO SECTION */
.dm-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}

.dm-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: radial-gradient(circle at 50% 50%, rgba(20, 20, 20, 1) 0%, rgba(5, 5, 5, 1) 100%);
}

.dm-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  z-index: 0;
}

.dm-orb-1 {
  width: 600px;
  height: 600px;
  background: var(--accent-color);
  top: -200px;
  right: -100px;
  animation: float 10s ease-in-out infinite alternate;
}

.dm-orb-2 {
  width: 500px;
  height: 500px;
  background: #333;
  bottom: -100px;
  left: -200px;
  animation: float 12s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(50px) scale(1.1); }
}

.dm-marquee {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}

.dm-marquee-content {
  display: inline-block;
  animation: peMarquee 40s linear infinite;
  font-size: 15vw;
  font-weight: 900;
  line-height: 1;
}

.dm-marquee-content span {
  padding: 0 2rem;
}

.dm-marquee-content .outline {
  -webkit-text-stroke: 2px #fff;
  color: transparent;
}

.dm-marquee-content .dot {
  color: var(--accent-color);
  font-size: 8vw;
  vertical-align: middle;
}

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

.dm-hero-content {
  position: relative;
  z-index: 1;
}

.dm-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent-color);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.dm-title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.dm-title .text-outline {
  -webkit-text-stroke: 1px #fff;
  color: transparent;
}

/* INNOVATIVE DIGITAL INTRO SECTION */
.dm-intro-section {
  position: relative;
  padding: 70px 0;
  background-color: var(--bg-primary);
  overflow: hidden;
}

.dm-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.6;
  z-index: 0;
}

.dm-glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.dm-intro-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.dm-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.05);
}

.dm-intro-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
}

.dm-intro-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.dm-intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Rotating Border Beam Effect */
.dm-intro-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(20, 20, 20, 1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  padding: 2px; /* The border thickness */
  transform: translateZ(0); /* Force GPU acceleration */
}

.dm-card-border-beam {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  padding-bottom: 150%;
  background: conic-gradient(from 0deg, transparent 0 340deg, var(--accent-color) 360deg);
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(0deg);
  animation: rotateBeam 4s linear infinite;
  opacity: 0.4;
  z-index: 0;
}

.dm-intro-card:hover .dm-card-border-beam {
  opacity: 1;
}

@keyframes rotateBeam {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.dm-intro-card-inner {
  position: relative;
  background: #0d0d0d;
  border-radius: 22px;
  padding: 3rem;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.dm-icon-wrapper {
  width: 55px;
  height: 55px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  margin-bottom: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.dm-icon-wrapper svg {
  width: 26px;
  height: 26px;
}

.dm-lead-text {
  font-size: 1.35rem;
  line-height: 1.8;
  color: #fff;
  font-weight: 300;
}

.dm-lead-text strong {
  font-weight: 600;
  color: var(--accent-color);
}

.dm-card-secondary p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ccc;
  font-weight: 300;
}

.dm-card-secondary p strong {
  color: #fff;
  font-weight: 500;
}

@media (max-width: 992px) {
  .dm-intro-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dm-intro-card-inner {
    padding: 2.5rem;
  }
  .dm-lead-text {
    font-size: 1.15rem;
  }
}


/* WHAT WE OFFER - TABBED SHOWCASE */
.dm-showcase-section {
  padding: 70px 0 90px 0;
  background: var(--bg-primary);
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.dm-showcase-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.dm-showcase-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.dm-showcase-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Tabs Navigation */
.dm-showcase-tabs {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(15, 15, 15, 0.8);
  padding: 0.8rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow-x: auto;
  backdrop-filter: blur(20px);
}

.dm-showcase-tabs::-webkit-scrollbar {
  display: none;
}

.dm-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: #888;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  white-space: nowrap;
}

.dm-tab-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  opacity: 0.6;
}

.dm-tab-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.dm-tab-btn.active {
  background: var(--accent-color);
  color: #000;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.dm-tab-btn.active .dm-tab-num {
  opacity: 1;
  font-weight: 800;
}

/* Content Window */
.dm-showcase-window {
  position: relative;
  width: 100%;
  border-radius: 30px;
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  overflow: hidden;
  min-height: 550px;
}

.dm-showcase-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
  min-height: 550px;
}

.dm-showcase-image-col {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.dm-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease;
}

.dm-showcase-content-wrapper:hover .dm-showcase-img {
  transform: scale(1.05);
}

.dm-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent 50%, rgba(10, 10, 10, 1) 100%);
  z-index: 1;
}

.dm-image-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.8) 100%);
  z-index: 2;
  pointer-events: none;
}

.dm-showcase-text-col {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: linear-gradient(to right, rgba(10, 10, 10, 1) 0%, rgba(15, 15, 15, 1) 100%);
  z-index: 3;
}

.dm-text-col-inner {
  position: relative;
  z-index: 2;
}

.dm-showcase-number-bg {
  position: absolute;
  top: -50px;
  right: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 12rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  line-height: 0.8;
  pointer-events: none;
}

.dm-showcase-text-col h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
}

.dm-showcase-text-col p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ccc;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.dm-includes-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dm-tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.dm-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  color: #ddd;
  transition: all 0.3s ease;
}

.dm-tag:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--accent-color);
  color: #fff;
}

@media (max-width: 1024px) {
  .dm-showcase-content-wrapper {
    grid-template-columns: 1fr;
    grid-template-rows: 400px auto;
  }
  
  .dm-image-overlay {
    background: linear-gradient(to bottom, transparent 50%, rgba(10, 10, 10, 1) 100%);
  }
  
  .dm-showcase-text-col {
    background: rgba(10, 10, 10, 1);
  }
}

@media (max-width: 768px) {
  .dm-showcase-tabs {
    flex-direction: column;
    border-radius: 20px;
    padding: 1rem;
  }
  
  .dm-tab-btn {
    border-radius: 10px;
    padding: 1rem;
    justify-content: flex-start;
  }
  
  .dm-showcase-text-col {
    padding: 2.5rem;
  }
  
  .dm-showcase-text-col h3 {
    font-size: 1.8rem;
  }
  
  .dm-showcase-number-bg {
    font-size: 8rem;
  }
}

/* WHY CHOOSE US ACCORDION SECTION */
.dm-why-section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
  background: var(--bg-primary);
}

.relative-z {
  position: relative;
  z-index: 2;
}

.dm-why-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.dm-why-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.dm-accordion-container {
  display: flex;
  min-height: 600px;
  gap: 1rem;
  width: 100%;
  margin-top: 2rem;
}

.dm-accordion-panel {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  position: relative;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
  cursor: pointer;
}

.dm-accordion-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.6);
  transition: all 0.6s ease;
  z-index: 1;
}

.dm-accordion-panel:hover {
  flex: 4;
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.dm-accordion-panel:hover .dm-accordion-overlay {
  background: rgba(10, 10, 10, 0.2);
}

.dm-accordion-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

.dm-accordion-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-color);
  margin-bottom: 1rem;
  transition: transform 0.6s ease;
  position: relative;
  z-index: 2;
}

.dm-accordion-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  transform: rotate(-90deg);
  transform-origin: left bottom;
  position: absolute;
  bottom: 30px;
  left: 60px;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

.dm-accordion-panel:hover .dm-accordion-heading {
  transform: rotate(0deg);
  position: relative;
  bottom: 0;
  left: 0;
  font-size: 2rem;
  margin-bottom: 1rem;
  white-space: normal;
}

.dm-accordion-panel:hover .dm-accordion-num {
  transform: translateY(-10px);
}

.dm-accordion-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ddd;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  transition-delay: 0s;
  max-width: 400px;
  position: relative;
  z-index: 2;
  display: none;
}

.dm-accordion-panel:hover .dm-accordion-desc {
  display: block;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

@media (max-width: 1024px) {
  .dm-accordion-container {
    flex-direction: column;
    min-height: 800px;
  }
  
  .dm-accordion-heading {
    transform: rotate(0deg);
    position: relative;
    bottom: 0;
    left: 0;
    white-space: normal;
  }
}

/* ==============================
   OUR DIGITAL MARKETING PROCESS
   ============================== */
.dm-process-section {
  position: relative;
  padding: 80px 0 90px 0;
  background: #050505;
  overflow: hidden;
}

.dm-process-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.dm-process-header {
  text-align: center;
  margin-bottom: 3rem;
}

.dm-process-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.04);
}

.dm-process-header h2 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
}

/* --- FLOW LAYOUT --- */
.dm-process-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  padding: 40px 0;
}

/* The horizontal glowing spine line */
.dm-process-flow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(212, 175, 55, 0.6) 10%,
    var(--accent-color) 50%,
    rgba(212, 175, 55, 0.6) 90%,
    transparent 100%
  );
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4), 0 0 40px rgba(212, 175, 55, 0.15);
  transform: translateY(-50%);
  z-index: 0;
}

/* --- EACH STEP --- */
.dm-process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Connector dot on the spine */
.dm-process-connector {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  z-index: 3;
  pointer-events: none;
}

.dm-connector-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2), 0 0 20px rgba(212, 175, 55, 0.6);
  animation: dmPulse 2.5s ease-in-out infinite;
}

@keyframes dmPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2), 0 0 20px rgba(212, 175, 55, 0.5); }
  50% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0.05), 0 0 40px rgba(212, 175, 55, 0.8); }
}

/* --- STEP CARD --- */
.dm-step-card {
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  width: 90%;
  max-width: 200px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: default;
}

/* Alternating UP/DOWN positioning to create wave effect */
.dm-step-up {
  margin-top: 0;
  margin-bottom: 130px;
}

.dm-step-down {
  margin-top: 130px;
  margin-bottom: 0;
}

.dm-step-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 0 30px rgba(212, 175, 55, 0.2);
}

.dm-step-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.dm-step-card:hover .dm-step-glow {
  opacity: 1;
}

/* Icon */
.dm-step-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.dm-step-icon-wrap svg {
  width: 30px;
  height: 30px;
}

.dm-step-card:hover .dm-step-icon-wrap {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--accent-color);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.dm-step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 2px;
  margin-bottom: 0.6rem;
  opacity: 0.7;
}

.dm-step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}

.dm-step-desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: #999;
  font-weight: 300;
}

/* Vertical line from card to spine */
.dm-step-up::after,
.dm-step-down::before {
  content: '';
  position: absolute;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, rgba(212, 175, 55, 0.5), transparent);
  transform: translateX(-50%);
}

.dm-step-up::after {
  bottom: -80px;
  height: 80px;
}

.dm-step-down::before {
  top: -80px;
  height: 80px;
  background: linear-gradient(to top, rgba(212, 175, 55, 0.5), transparent);
}


/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
  .dm-process-flow {
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 1.5rem;
  }

  /* Hide horizontal spine on mobile */
  .dm-process-flow::before {
    display: none;
  }

  .dm-process-connector {
    display: none;
  }

  .dm-step-up,
  .dm-step-down {
    margin: 0;
  }

  .dm-step-up::after,
  .dm-step-down::before {
    display: none;
  }

  .dm-step-card {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: row;
    text-align: left;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    border-radius: 16px;
  }

  .dm-step-icon-wrap {
    margin: 0;
    flex-shrink: 0;
  }

  .dm-step-num {
    margin-bottom: 0.3rem;
  }

  /* Vertical timeline line */
  .dm-process-step:not(:last-child)::after {
    content: '';
    display: block;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(212,175,55,0.5), transparent);
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .dm-step-card {
    padding: 1.5rem;
    gap: 1rem;
    flex-direction: column;
    text-align: center;
  }

  .dm-step-icon-wrap {
    margin: 0 auto;
  }
}

/* Digital CTA Section */
.dm-cta-section {
  padding: 80px 0 100px 0;
  position: relative;
  background-color: #030303;
  overflow: hidden;
}

.dm-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(15, 15, 15, 1) 0%, rgba(0, 0, 0, 1) 100%);
  z-index: 0;
}

.dm-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.dm-cta-box {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 4.5rem;
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 24px;
  backdrop-filter: blur(15px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dm-cta-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dm-cta-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #aaa;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.dm-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.dm-cta-btn {
  padding: 1rem 2.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.dm-cta-btn.btn-primary {
  background-color: var(--accent-color);
  color: #000;
  border: 1px solid var(--accent-color);
}

.dm-cta-btn.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.dm-cta-btn.btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dm-cta-btn.btn-secondary:hover {
  border-color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .dm-cta-box {
    padding: 3rem 1.5rem;
  }
}


/* --- Content from src/pages/IntegratedBrandPage.css --- */
/* ==========================================
   INTEGRATED BRAND SOLUTIONS PAGE
   ========================================== */

/* ── HERO ── */
.ib-page {
  background: var(--bg-primary);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
}

.ib-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}

.ib-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: radial-gradient(circle at 50% 50%, rgba(20, 20, 20, 1) 0%, rgba(5, 5, 5, 1) 100%);
}

.ib-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  z-index: 0;
}

.ib-orb-1 {
  width: 600px;
  height: 600px;
  background: var(--accent-color);
  top: -200px;
  right: -100px;
  animation: ibFloat 10s ease-in-out infinite alternate;
}

.ib-orb-2 {
  width: 500px;
  height: 500px;
  background: #333;
  bottom: -100px;
  left: -200px;
  animation: ibFloat 12s ease-in-out infinite alternate-reverse;
}

@keyframes ibFloat {
  0%   { transform: translateY(0) scale(1); }
  100% { transform: translateY(50px) scale(1.1); }
}

/* Large background scrolling marquee — same as Production page */
.ib-marquee {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}

.ib-marquee-content {
  display: inline-block;
  animation: ibMarquee 40s linear infinite;
  font-size: 15vw;
  font-weight: 900;
  line-height: 1;
}

.ib-marquee-content span {
  padding: 0 2rem;
}

.ib-marquee-content .outline {
  -webkit-text-stroke: 2px #fff;
  color: transparent;
}

.ib-marquee-content .dot {
  color: var(--accent-color);
  font-size: 8vw;
  vertical-align: middle;
}

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

/* Hero content */
.ib-hero-content {
  position: relative;
  z-index: 1;
}

.ib-title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.ib-title .text-outline {
  -webkit-text-stroke: 1px #fff;
  color: transparent;
}

.text-accent  { color: var(--accent-color); }
.text-outline {
  -webkit-text-stroke: 2px rgba(255,255,255,0.5);
  color: transparent;
}

/* ── INTRO SECTION ── */
.ib-intro-section {
  position: relative;
  padding: 55px 0 65px 0;
  background: #050505;
  overflow: hidden;
}

.ib-intro-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.ib-relative-z { position: relative; z-index: 2; }

/* Two-column layout */
.ib-intro-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3.5rem;
  align-items: center;
}

/* Image col */
.ib-intro-image-col {
  position: relative;
  max-width: 420px;
  margin-left: 2rem;
}

.ib-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}

.ib-main-img {
  width: 100%;
  border-radius: 20px;
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}

/* Animated glow ring behind image */
.ib-img-glow-ring {
  position: absolute;
  inset: -20px;
  border-radius: 28px;
  background: conic-gradient(from 0deg, transparent 0 340deg, var(--accent-color) 360deg);
  animation: ibGlowSpin 6s linear infinite;
  opacity: 0.25;
  z-index: 1;
  filter: blur(8px);
}

@keyframes ibGlowSpin {
  to { transform: rotate(360deg); }
}

/* Corner accents */
.ib-img-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--accent-color);
  border-style: solid;
  z-index: 3;
}
.ib-corner-tl { top: -4px; left: -4px; border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.ib-corner-tr { top: -4px; right: -4px; border-width: 2px 2px 0 0; border-radius: 0 4px 0 0; }
.ib-corner-bl { bottom: -4px; left: -4px; border-width: 0 0 2px 2px; border-radius: 0 0 0 4px; }
.ib-corner-br { bottom: -4px; right: -4px; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }

/* Floating stat badges */
.ib-stat-badge {
  position: absolute;
  background: rgba(10,10,10,0.85);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  backdrop-filter: blur(20px);
  z-index: 5;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.ib-badge-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent-color);
  line-height: 1;
}

.ib-badge-label {
  font-size: 0.75rem;
  color: #aaa;
  font-weight: 500;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.ib-badge-1 { bottom: -20px; left: -20px; }
.ib-badge-2 { top: -20px; right: -20px; }

/* Text col */
.ib-intro-text-col {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.ib-section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 50px;
  background: rgba(212,175,55,0.04);
  width: fit-content;
}

.ib-intro-text-col h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
}

.ib-lead-para {
  font-size: 0.97rem;
  line-height: 1.8;
  color: #ddd;
  font-weight: 300;
}

.ib-lead-para strong { color: #fff; font-weight: 600; }

.ib-body-para {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #aaa;
  font-weight: 300;
}

.ib-body-para strong { color: #ccc; font-weight: 500; }

/* Pillars grid */
.ib-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.ib-pillar-chip {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ccc;
  transition: all 0.3s ease;
  cursor: default;
}

.ib-pillar-chip:hover {
  background: rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.4);
  color: #fff;
  transform: translateY(-2px);
}

.ib-pillar-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ib-pillar-icon svg {
  width: 18px;
  height: 18px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .ib-intro-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .ib-intro-image-col {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .ib-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    letter-spacing: -1px;
  }

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

  .ib-stat-badge {
    padding: 0.7rem 1rem;
  }

  .ib-badge-num { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .ib-pillars-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ib-badge-1 { bottom: auto; top: auto; left: -10px; bottom: -10px; }
  .ib-badge-2 { top: -10px; right: -10px; }
}

/* ═══════════════════════════════
   WHAT WE DELIVER SECTION
   ═══════════════════════════════ */
.ib-deliver-section {
  position: relative;
  padding: 80px 0 0 0;
  background: #000;
  overflow: hidden;
}

.ib-deliver-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(212,175,55,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.ib-deliver-header {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.ib-deliver-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
}

/* ── Panels ── */
.ib-deliver-panels {
  display: flex;
  flex-direction: column;
  padding: 0 3rem;
  gap: 2rem;
  padding-bottom: 4rem;
}

.ib-deliver-panel {
  display: grid;
  grid-template-columns: 2fr 3fr;
  min-height: 360px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.ib-deliver-panel:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ib-deliver-panel:hover {
  background: rgba(255,255,255,0.01);
  border-color: rgba(212,175,55,0.2);
}

/* Reversed panel — image goes right */
.ib-panel-reverse {
  direction: rtl;
}
.ib-panel-reverse > * {
  direction: ltr;
}

/* Image side */
.ib-panel-image-col {
  position: relative;
  overflow: hidden;
}

.ib-panel-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
  overflow: hidden;
  border-radius: 18px;
  margin: 1.5rem;
  width: calc(100% - 3rem);
}

.ib-panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
  filter: brightness(0.85) saturate(0.9);
}

.ib-deliver-panel:hover .ib-panel-img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.1);
}

/* Gradient overlay on image */
.ib-panel-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, rgba(0,0,0,0.95) 100%);
  z-index: 1;
}

.ib-panel-reverse .ib-panel-img-overlay {
  background: linear-gradient(to left, transparent 50%, rgba(0,0,0,0.95) 100%);
}

/* Large number watermark on image */
.ib-panel-num-watermark {
  position: absolute;
  bottom: -30px;
  left: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 10rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  z-index: 2;
  pointer-events: none;
  transition: color 0.4s ease;
}

.ib-deliver-panel:hover .ib-panel-num-watermark {
  color: rgba(212,175,55,0.06);
}

/* Text side */
.ib-panel-text-col {
  display: flex;
  align-items: center;
  padding: 2rem 2rem;
  background: #000;
  position: relative;
}

.ib-panel-text-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(212,175,55,0.03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.ib-deliver-panel:hover .ib-panel-text-col::before {
  opacity: 1;
}

.ib-panel-text-inner {
  max-width: 500px;
  width: 100%;
}

.ib-panel-step-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--accent-color);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  opacity: 0.7;
}

.ib-panel-text-inner h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.ib-panel-divider {
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  margin-bottom: 1.4rem;
  border-radius: 2px;
  transition: width 0.5s ease;
}

.ib-deliver-panel:hover .ib-panel-divider {
  width: 100px;
}

.ib-panel-text-inner p {
  font-size: 1rem;
  line-height: 1.9;
  color: #aaa;
  font-weight: 300;
  margin-bottom: 2rem;
}

/* Tags */
.ib-panel-tags {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ib-panel-tag {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: #ccc;
  font-weight: 500;
  transition: color 0.3s ease;
}

.ib-panel-tag:hover {
  color: #fff;
}

.ib-tag-dot {
  color: var(--accent-color);
  font-size: 0.5rem;
  flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .ib-deliver-panels {
    padding: 0 1.5rem;
    padding-bottom: 3rem;
  }

  .ib-deliver-panel,
  .ib-panel-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    min-height: auto;
  }

  .ib-panel-reverse > * {
    direction: ltr;
  }

  .ib-panel-img-wrap {
    min-height: 220px;
    margin: 1.5rem 1.5rem 0 1.5rem;
    width: calc(100% - 3rem);
    border-radius: 14px;
  }

  .ib-panel-img-overlay {
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.95) 100%) !important;
  }

  .ib-panel-text-col {
    padding: 2rem 2rem 2.5rem 2rem;
  }
}

/* ═══════════════════════════════
   WHY CHOOSE US — BENTO GRID
   ═══════════════════════════════ */
.ib-why-section {
  padding: 55px 0 65px 0;
  background: #050505;
  position: relative;
  overflow: hidden;
}

.ib-why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 100%);
}

.ib-why-header {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.ib-why-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
}

/* ── Bento Grid ── */
.ib-why-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 1.2rem;
  position: relative;
  z-index: 2;
}

/* Wide card = spans 2 cols */
.ib-card-wide  { grid-column: span 2; }
/* Narrow card = 1 col */
.ib-card-narrow { grid-column: span 1; }
/* Full-width card */
.ib-card-full  { grid-column: span 3; }

/* ── Base card style ── */
.ib-why-card {
  position: relative;
  background: rgba(12, 12, 12, 0.95);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 2.5rem;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: default;
}

.ib-why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at 30% 30%, rgba(212,175,55,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ib-why-card:hover {
  border-color: rgba(212,175,55,0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 0 30px rgba(212,175,55,0.08);
}

.ib-why-card:hover::before { opacity: 1; }

/* Featured variant — subtle gold tint bg */
.ib-card-featured {
  background: linear-gradient(135deg, rgba(20,15,5,1) 0%, rgba(12,12,12,1) 100%);
  border-color: rgba(212,175,55,0.15);
}

/* Dark variant */
.ib-card-dark {
  background: rgba(8, 8, 8, 1);
}

/* Full accent strip */
.ib-card-accent {
  background: linear-gradient(135deg, rgba(20,15,5,1) 0%, rgba(10,8,2,1) 100%);
  border-color: rgba(212,175,55,0.2);
}

/* Number watermark */
.ib-why-num {
  position: absolute;
  top: -20px;
  right: 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 7rem;
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s ease;
  z-index: 0;
}

.ib-why-card:hover .ib-why-num {
  color: rgba(212,175,55,0.05);
}

/* Icon */
.ib-why-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(212,175,55,0.07);
  border: 1px solid rgba(212,175,55,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.ib-why-icon svg {
  width: 28px;
  height: 28px;
}

.ib-why-card:hover .ib-why-icon {
  background: rgba(212,175,55,0.14);
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 0 20px rgba(212,175,55,0.25);
}

.ib-icon-large {
  width: 70px;
  height: 70px;
  border-radius: 18px;
}

.ib-icon-large svg {
  width: 36px;
  height: 36px;
}

/* Text */
.ib-why-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}

.ib-why-card p {
  font-size: 0.97rem;
  line-height: 1.75;
  color: #999;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* Full card inner layout — horizontal */
.ib-card-full-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.ib-card-full-text h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.ib-card-full-text p {
  font-size: 1.05rem;
  max-width: 700px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .ib-why-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .ib-card-wide  { grid-column: span 2; }
  .ib-card-full  { grid-column: span 2; }
  .ib-card-narrow { grid-column: span 1; }
}

@media (max-width: 640px) {
  .ib-why-bento {
    grid-template-columns: 1fr;
  }
  .ib-card-wide,
  .ib-card-narrow,
  .ib-card-full { grid-column: span 1; }

  .ib-card-full-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .ib-why-num { font-size: 5rem; }
}
@media (max-width: 600px) {
  .ib-panel-text-col {
    padding: 2.5rem 1.5rem;
  }

  .ib-panel-img-wrap {
    min-height: 250px;
  }

  .ib-panel-text-inner h3 {
    font-size: 1.5rem;
  }
}

/* PROCESS — ZIGZAG FLOWCHART */
.ib-process-section {
  position: relative;
  padding: 55px 0 65px 0;
  background: #000;
  overflow: hidden;
}
.ib-process-dots-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212,175,55,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 90% at 50% 50%, black 40%, transparent 100%);
}
.ib-process-header {
  text-align: center;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.ib-process-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
}
.ib-process-zigzag {
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
}
.ib-zz-row {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: flex-start;
}
.ib-zz-right .ib-zz-card   { order: 3; }
.ib-zz-right .ib-zz-spine  { order: 2; }
.ib-zz-right .ib-zz-spacer { order: 1; }
.ib-zz-card {
  background: rgba(14,14,14,0.95);
  border: 1px solid rgba(212,175,55,0.1);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  align-self: center;
  margin: 2rem 0;
}
.ib-zz-card-glow {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at 20% 20%, rgba(212,175,55,0.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.ib-zz-card:hover {
  border-color: rgba(212,175,55,0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.7), 0 0 25px rgba(212,175,55,0.08);
}
.ib-zz-card:hover .ib-zz-card-glow { opacity: 1; }
.ib-zz-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(212,175,55,0.07);
  border: 1px solid rgba(212,175,55,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-color);
  margin-bottom: 1.2rem;
  position: relative; z-index: 1;
  transition: all 0.4s ease;
}
.ib-zz-icon svg { width: 26px; height: 26px; }
.ib-zz-card:hover .ib-zz-icon {
  background: rgba(212,175,55,0.12);
  border-color: var(--accent-color);
  box-shadow: 0 0 18px rgba(212,175,55,0.25);
}
.ib-zz-step-badge {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 3px;
  color: var(--accent-color); text-transform: uppercase;
  margin-bottom: 0.5rem; opacity: 0.7; position: relative; z-index: 1;
}
.ib-zz-title {
  font-size: 1.3rem; font-weight: 700; color: #fff;
  line-height: 1.3; margin-bottom: 0.8rem; position: relative; z-index: 1;
}
.ib-zz-desc {
  font-size: 0.97rem; line-height: 1.75; color: #999;
  font-weight: 300; position: relative; z-index: 1;
}
.ib-zz-spine {
  display: flex; flex-direction: column; align-items: center;
}
.ib-zz-hex {
  width: 52px; height: 52px;
  background: var(--bg-primary);
  border: 2px solid var(--accent-color);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 4px rgba(212,175,55,0.1), 0 0 20px rgba(212,175,55,0.25);
  z-index: 3; margin-top: 2.5rem; flex-shrink: 0;
  transform: rotate(45deg);
  transition: all 0.4s ease;
}
.ib-zz-hex span {
  font-family: 'Outfit', sans-serif; font-size: 0.75rem;
  font-weight: 800; color: var(--accent-color); letter-spacing: 1px;
  transform: rotate(-45deg); display: block;
}
.ib-zz-spine-line {
  width: 2px; min-height: 80px; flex: 1;
  background: linear-gradient(to bottom, var(--accent-color), rgba(212,175,55,0.05));
}
@media (max-width: 768px) {
  .ib-zz-row { grid-template-columns: 50px 1fr; }
  .ib-zz-left .ib-zz-card,
  .ib-zz-right .ib-zz-card   { order: 2; grid-column: 2; }
  .ib-zz-left .ib-zz-spine,
  .ib-zz-right .ib-zz-spine  { order: 1; grid-column: 1; grid-row: 1; }
  .ib-zz-left .ib-zz-spacer,
  .ib-zz-right .ib-zz-spacer { display: none; }
  .ib-zz-card { margin: 1rem 0 1rem 1rem; }
  .ib-zz-hex  { width: 40px; height: 40px; margin-top: 2rem; }
  .ib-zz-hex span { font-size: 0.62rem; }
}
@media (max-width: 480px) {
  .ib-zz-card  { padding: 1.5rem; }
  .ib-zz-title { font-size: 1rem; }
}

/* Integrated CTA Section */
.ib-cta-section {
  padding: 80px 0 100px 0;
  position: relative;
  background-color: #030303;
  overflow: hidden;
}

.ib-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(15, 15, 15, 1) 0%, rgba(0, 0, 0, 1) 100%);
  z-index: 0;
}

.ib-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.ib-cta-box {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 4.5rem;
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 24px;
  backdrop-filter: blur(15px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ib-cta-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ib-cta-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #aaa;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.ib-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.ib-cta-btn {
  padding: 1rem 2.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.ib-cta-btn.btn-primary {
  background-color: var(--accent-color);
  color: #000;
  border: 1px solid var(--accent-color);
}

.ib-cta-btn.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.ib-cta-btn.btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ib-cta-btn.btn-secondary:hover {
  border-color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .ib-cta-box {
    padding: 3rem 1.5rem;
  }
}

/* --- Content from src/pages/ProductionEntertainmentPage.css --- */
.production-page {
  background-color: var(--bg-primary);
  color: #fff;
  min-height: 100vh;
}

/* HERO SECTION */
.pe-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}

.pe-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: radial-gradient(circle at 50% 50%, rgba(20, 20, 20, 1) 0%, rgba(5, 5, 5, 1) 100%);
}

.pe-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  z-index: 0;
}

.pe-orb-1 {
  width: 600px;
  height: 600px;
  background: var(--accent-color);
  top: -200px;
  right: -100px;
  animation: float 10s ease-in-out infinite alternate;
}

.pe-orb-2 {
  width: 500px;
  height: 500px;
  background: #333;
  bottom: -100px;
  left: -200px;
  animation: float 12s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(50px) scale(1.1); }
}

.pe-marquee {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}

.pe-marquee-content {
  display: inline-block;
  animation: peMarquee 40s linear infinite;
  font-size: 15vw;
  font-weight: 900;
  line-height: 1;
}

.pe-marquee-content span {
  padding: 0 2rem;
}

.pe-marquee-content .outline {
  -webkit-text-stroke: 2px #fff;
  color: transparent;
}

.pe-marquee-content .dot {
  color: var(--accent-color);
  font-size: 8vw;
  vertical-align: middle;
}

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

.pe-hero-content {
  position: relative;
  z-index: 1;
}

.pe-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent-color);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.pe-title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.pe-title .text-outline {
  -webkit-text-stroke: 1px #fff;
  color: transparent;
}

/* CINEMATIC BACKGROUND SECTION */
.pe-cinematic-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  z-index: 2;
}

.pe-cinematic-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  z-index: 0;
}

.pe-cinematic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.7) 50%, rgba(5,5,5,0.4) 100%);
}

.pe-cinematic-container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.pe-glass-panel {
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 4rem;
  max-width: 900px;
  margin: 0 auto;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.pe-glass-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
  pointer-events: none;
  animation: panelGlow 6s infinite alternate;
}

@keyframes panelGlow {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.1); opacity: 1; }
}

.pe-glass-content {
  position: relative;
  z-index: 2;
}

.pe-glass-content h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-align: center;
}

.pe-line {
  height: 3px;
  width: 100px;
  background: var(--accent-color);
  margin: 0 auto 3rem auto;
}

.pe-text-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}

.pe-text-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ccc;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.pe-text-block p:last-child {
  margin-bottom: 0;
}

.lead-text {
  font-size: 1.3rem !important;
  line-height: 1.8 !important;
  color: #fff !important;
  font-weight: 400 !important;
}

@media (max-width: 1024px) {
  .pe-text-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .pe-cinematic-section {
    padding: 60px 0;
  }
  
  .pe-cinematic-bg {
    background-attachment: scroll;
  }
  
  .pe-glass-panel {
    padding: 2.5rem;
  }
  
  .pe-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
}

/* WHAT WE OFFER SECTION */
.pe-offer-section {
  padding: 70px 0 90px 0;
  background: var(--bg-primary);
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pe-offer-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pe-offer-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.center-line {
  margin-left: auto;
  margin-right: auto;
}

.pe-stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pe-stack-card {
  position: sticky;
  padding-bottom: 2rem;
}

.pe-stack-card-inner {
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.pe-stack-number {
  position: absolute;
  top: -20px;
  left: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
}

.pe-stack-card:hover .pe-stack-card-inner {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-5px);
}

.pe-stack-content-left {
  position: relative;
  z-index: 2;
}

.pe-stack-content-left h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1.5rem;
}

.pe-stack-content-left p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ccc;
  font-weight: 300;
}

.pe-stack-content-right {
  position: relative;
  z-index: 2;
}

.pe-stack-content-right h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pe-tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.pe-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.7rem 1.2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  color: #ddd;
  transition: all 0.3s ease;
}

.pe-tag:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--accent-color);
  color: #fff;
}

@media (max-width: 1024px) {
  .pe-stack-card-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .pe-stack-card-inner {
    padding: 2.5rem;
  }
  
  .pe-stack-number {
    font-size: 6rem;
    top: 10px;
  }
}

/* OUR PRODUCTION PROCESS FLOWCHART */
.pe-process-section {
  padding: 70px 0;
  background: var(--bg-primary);
  position: relative;
}

.pe-process-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pe-process-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.3;
}

.pe-flowchart-container {
  position: relative;
  width: 100%;
  margin-top: 18rem;
  margin-bottom: 8rem;
}

@media (max-width: 992px) {
  .pe-flowchart-container {
    margin-top: 4rem;
    margin-bottom: 3rem;
  }
}

.pe-flow-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  transform: translateY(-50%);
  z-index: 0;
  opacity: 0.5;
}

.pe-flow-line::after {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--accent-color);
  filter: blur(8px);
  opacity: 0.3;
}

.pe-flow-nodes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pe-flow-step {
  position: relative;
  width: 18%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pe-flow-step.flow-top .pe-flow-card {
  transform: translateY(-60%);
}

.pe-flow-step.flow-bottom .pe-flow-card {
  transform: translateY(60%);
}

.pe-flow-card {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  position: relative;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.pe-flow-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1);
}

.pe-flow-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: var(--accent-color);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.pe-flow-icon svg {
  width: 28px;
  height: 28px;
}

.pe-flow-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 10px;
  right: 15px;
  line-height: 1;
  pointer-events: none;
}

.pe-flow-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pe-flow-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #aaa;
  font-weight: 300;
  margin: 0;
}

.pe-flow-arrow {
  position: absolute;
  top: 50%;
  right: -30%;
  transform: translateY(-50%);
  color: var(--accent-color);
  z-index: 2;
  animation: pulseArrow 2s infinite;
}

.pe-flow-arrow svg {
  width: 28px;
  height: 28px;
  opacity: 0.7;
}

@keyframes pulseArrow {
  0% { transform: translateY(-50%) translateX(0); opacity: 0.5; }
  50% { transform: translateY(-50%) translateX(10px); opacity: 1; }
  100% { transform: translateY(-50%) translateX(0); opacity: 0.5; }
}

@media (max-width: 1024px) {
  .pe-flowchart-container {
    margin-top: 3rem;
  }

  .pe-flow-line {
    width: 2px;
    height: 100%;
    left: 30px;
    top: 0;
    transform: none;
    background: linear-gradient(180deg, transparent, var(--accent-color), transparent);
  }
  
  .pe-flow-line::after {
    display: none;
  }
  
  .pe-flow-nodes {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
    padding-left: 70px;
  }
  
  .pe-flow-step {
    width: 100%;
  }
  
  .pe-flow-step.flow-top .pe-flow-card,
  .pe-flow-step.flow-bottom .pe-flow-card {
    transform: none;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
  }
  
  .pe-flow-icon {
    margin: 0;
    flex-shrink: 0;
  }
  
  .pe-flow-content {
    text-align: left;
  }
  
  .pe-flow-arrow {
    display: none;
  }
  
  .pe-flow-step::before {
    content: '';
    position: absolute;
    left: -48px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: var(--bg-primary);
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
  }
}

@media (max-width: 768px) {
  .pe-flow-step.flow-top .pe-flow-card,
  .pe-flow-step.flow-bottom .pe-flow-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

/* WHY CHOOSE US - BENTO GRID SECTION */
.pe-why-section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
  background: var(--bg-primary);
}

.pe-why-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
  opacity: 0.15;
}

.relative-z {
  position: relative;
  z-index: 2;
}

.pe-why-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pe-why-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.pe-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pe-card-wide {
  grid-column: 1 / -1;
}

.pe-why-card {
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 250px;
}

.pe-why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
}

.pe-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pe-why-card:hover .pe-card-glow {
  opacity: 1;
}

.pe-card-num {
  position: absolute;
  right: -10px;
  bottom: -20px;
  font-family: 'Outfit', sans-serif;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s ease;
}

.pe-why-card:hover .pe-card-num {
  color: rgba(212, 175, 55, 0.08);
}

.pe-card-content {
  position: relative;
  z-index: 2;
}

.pe-card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.pe-card-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #aaa;
  font-weight: 300;
  max-width: 80%;
}

.pe-card-wide .pe-card-content p {
  max-width: 60%;
}

@media (max-width: 768px) {
  .pe-why-grid {
    grid-template-columns: 1fr;
  }
  
  .pe-card-wide {
    grid-column: span 1;
  }
  
  .pe-why-card {
    padding: 2rem;
  }
  
  .pe-card-content p, .pe-card-wide .pe-card-content p {
    max-width: 100%;
  }
}

/* Cinematic CTA Section */
.pe-cta-section {
  padding: 80px 0 100px 0;
  position: relative;
  background-color: #030303;
  overflow: hidden;
}

.pe-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(15, 15, 15, 1) 0%, rgba(0, 0, 0, 1) 100%);
  z-index: 0;
}

.pe-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.pe-cta-box {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 4.5rem;
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 24px;
  backdrop-filter: blur(15px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pe-cta-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pe-cta-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #aaa;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.pe-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.pe-cta-btn {
  padding: 1rem 2.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.pe-cta-btn.btn-primary {
  background-color: var(--accent-color);
  color: #000;
  border: 1px solid var(--accent-color);
}

.pe-cta-btn.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.2);
}

.pe-cta-btn.btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pe-cta-btn.btn-secondary:hover {
  border-color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .pe-cta-box {
    padding: 3rem 1.5rem;
  }
}


/* --- Content from src/pages/PortfolioPage.css --- */
.portfolio-page {
  background: var(--bg-color);
  min-height: 100vh;
}

.portfolio-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
}

.portfolio-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: radial-gradient(circle at 50% 50%, rgba(20, 20, 20, 1) 0%, rgba(5, 5, 5, 1) 100%);
}

.portfolio-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  z-index: 0;
}

.portfolio-orb-1 {
  width: 600px;
  height: 600px;
  background: var(--accent-color);
  top: -200px;
  right: -100px;
  animation: portfolioFloat 10s ease-in-out infinite alternate;
}

.portfolio-orb-2 {
  width: 500px;
  height: 500px;
  background: #333;
  bottom: -100px;
  left: -200px;
  animation: portfolioFloat 12s ease-in-out infinite alternate-reverse;
}

@keyframes portfolioFloat {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(50px) scale(1.1); }
}

.portfolio-marquee {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}

.portfolio-marquee-content {
  display: inline-block;
  animation: portfolioMarquee 40s linear infinite;
  font-size: 15vw;
  font-weight: 900;
  line-height: 1;
}

.portfolio-marquee-content span {
  padding: 0 2rem;
}

.portfolio-marquee-content .outline {
  -webkit-text-stroke: 2px #fff;
  color: transparent;
}

.portfolio-marquee-content .dot {
  color: var(--accent-color);
  font-size: 8vw;
  vertical-align: middle;
}

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

.portfolio-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: left;
  padding: 0 2rem;
}

.portfolio-title {
  font-size: clamp(3.5rem, 8.5vw, 7.8rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -3px;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 2rem;
}

.portfolio-title .text-accent {
  color: var(--accent-color);
  text-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
}

.portfolio-title .text-outline {
  -webkit-text-stroke: 2px #fff;
  color: transparent;
}

.portfolio-hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 650px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.portfolio-gallery-section {
  padding-top: 80px;
}

.portfolio-filter-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.filter-btn {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.filter-btn.active {
  background: var(--accent-color);
  color: #000;
  border-color: var(--accent-color);
  font-weight: 700;
}

.portfolio-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.8rem;
  padding-bottom: 100px;
}

.portfolio-gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.7);
  background: #080808;
  border: 1px solid rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-gallery-item:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9), 0 0 20px rgba(212, 175, 55, 0.1);
}

.portfolio-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-gallery-item:hover img {
  transform: scale(1.04);
}

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-gallery-item:hover .portfolio-item-overlay {
  opacity: 1;
}

.portfolio-item-category {
  color: var(--accent-color);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.portfolio-item-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.portfolio-gallery-item:hover .portfolio-item-category,
.portfolio-gallery-item:hover .portfolio-item-title {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .portfolio-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.2rem;
  }
  
  .portfolio-item-overlay {
    opacity: 1; /* Always show text on mobile */
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
  }
  
  .portfolio-item-category,
  .portfolio-item-title {
    transform: translateY(0);
  }
}


/* ==========================================
   CONTACT PAGE CSS
   ========================================== */
.contact-page-wrapper {
  background: transparent;
  color: #fff;
  overflow: hidden;
  position: relative;
}

/* --- HERO SECTION --- */
.cp-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 150px 5% 100px;
  background: radial-gradient(circle at top center, rgba(224, 176, 107, 0.15) 0%, #000 70%);
}

.cp-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.05"/></svg>');
  pointer-events: none;
}

.cp-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 2rem;
  background: linear-gradient(180deg, #fff 0%, #666 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cp-subtitle {
  max-width: 800px;
  font-size: 1rem;
  line-height: 1.6;
  color: #aaa;
  margin-bottom: 1.5rem;
}

.cp-subtitle strong {
  color: var(--accent-color);
  font-weight: 600;
}

/* --- CONTACT CARDS --- */
.cp-cards-section {
  position: relative;
  margin-top: -80px;
  padding: 0 5%;
  z-index: 10;
}

.cp-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.cp-card {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.cp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(224, 176, 107, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cp-card:hover {
  transform: translateY(-15px);
  border-color: rgba(224, 176, 107, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

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

.cp-icon-wrap {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  background: rgba(224, 176, 107, 0.1);
  border: 1px solid rgba(224, 176, 107, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.cp-card:hover .cp-icon-wrap {
  background: var(--accent-color);
  color: #000;
  transform: scale(1.1) rotate(5deg);
}

.cp-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

.cp-card p {
  color: #888;
  line-height: 1.5;
  font-size: 0.9rem;
}

/* --- FORM & MAP SPLIT --- */
.cp-interactive-section {
  padding: 150px 5%;
}

.cp-interactive-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
}

.cp-form-header h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.cp-form-header p {
  color: #888;
  margin-bottom: 3rem;
}

.cp-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cp-input-group {
  position: relative;
}

.cp-input, .cp-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.cp-textarea {
  resize: vertical;
  min-height: 80px;
}

.cp-input:focus, .cp-textarea:focus {
  outline: none;
  border-bottom-color: var(--accent-color);
}

.cp-label {
  position: absolute;
  top: 10px;
  left: 0;
  color: #666;
  pointer-events: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.cp-input:focus ~ .cp-label,
.cp-input:valid ~ .cp-label,
.cp-textarea:focus ~ .cp-label,
.cp-textarea:valid ~ .cp-label {
  top: -10px;
  font-size: 0.85rem;
  color: var(--accent-color);
}

.cp-submit-btn {
  background: var(--accent-color);
  color: #000;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 1rem;
}

.cp-submit-btn:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

.cp-submit-btn:disabled {
  background: rgba(224, 176, 107, 0.5);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  color: rgba(0, 0, 0, 0.6);
}

@keyframes cp-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cp-spinner {
  animation: cp-spin 1s linear infinite;
}

.cp-alert-banner {
  border-radius: 12px;
  margin-bottom: 2rem;
  overflow: hidden;
  border: 1px solid transparent;
  backdrop-filter: blur(10px);
}

.cp-alert-banner.success {
  background: rgba(46, 213, 115, 0.1);
  border-color: rgba(46, 213, 115, 0.3);
  color: #2ed573;
}

.cp-alert-banner.error {
  background: rgba(255, 71, 87, 0.1);
  border-color: rgba(255, 71, 87, 0.3);
  color: #ff4757;
}

.cp-alert-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.cp-alert-icon {
  flex-shrink: 0;
}

.cp-map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.cp-map-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}

/* --- FAQ SECTION --- */
.cp-faq-section {
  padding: 50px 5% 150px;
  max-width: 1000px;
  margin: 0 auto;
}

.cp-faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.cp-faq-header h2 {
  font-size: 2.5rem;
}

.cp-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cp-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
}

.cp-faq-icon {
  color: var(--accent-color);
  transition: transform 0.4s ease;
}

.cp-faq-item.active .cp-faq-icon {
  transform: rotate(180deg);
}

.cp-faq-answer {
  overflow: hidden;
  color: #888;
  line-height: 1.6;
  font-size: 0.95rem;
  padding-right: 50px;
}

.cp-faq-answer-inner {
  padding-top: 1.5rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .cp-interactive-container {
    grid-template-columns: 1fr;
    padding: 3rem;
  }
  
  .cp-map-wrapper {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .cp-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }
  
  .cp-hero {
    padding-top: 120px;
    min-height: 60vh;
  }
  
  .cp-interactive-container {
    padding: 2rem;
  }
  
  .cp-faq-question {
    font-size: 1.2rem;
  }
}


/* ==========================================
   MOBILE NAVIGATION
   ========================================== */
.mobile-menu-btn {
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    cursor: pointer;
    z-index: 1000;
  }
  
  .mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
  }
  
  /* Hamburger Animation */
  .mobile-menu-btn.nav-active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .mobile-menu-btn.nav-active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.nav-active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  /* Override previous display:none with high specificity */
  nav.navbar .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 120px 30px 50px;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
    align-items: flex-start;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.8);
    overflow-y: auto;
  }
  
  nav.navbar .nav-links.nav-active {
    right: 0;
  }
  
  nav.navbar .nav-links li {
    margin: 15px 0;
    width: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
  }
  
  nav.navbar .nav-links.nav-active li {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Staggered animation for links */
  nav.navbar .nav-links.nav-active li:nth-child(1) { transition-delay: 0.1s; }
  nav.navbar .nav-links.nav-active li:nth-child(2) { transition-delay: 0.15s; }
  nav.navbar .nav-links.nav-active li:nth-child(3) { transition-delay: 0.2s; }
  nav.navbar .nav-links.nav-active li:nth-child(4) { transition-delay: 0.25s; }
  nav.navbar .nav-links.nav-active li:nth-child(5) { transition-delay: 0.3s; }
  nav.navbar .nav-links.nav-active li:nth-child(6) { transition-delay: 0.35s; }
  
  nav.navbar .nav-links a {
    font-size: 1.2rem;
    display: block;
    width: 100%;
  }
  
  /* Fix dropdown on mobile */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    border: none;
    padding-left: 20px;
    display: none;
    margin-top: 15px;
  }
  
  .dropdown-container.mobile-active .dropdown-menu {
    display: block;
  }
  
  .dropdown-container.mobile-active .dropdown-trigger {
    color: var(--accent-color);
  }
  
  .dropdown-trigger::after {
    float: right;
    margin-top: 8px;
  }
}
