/* ===== DIGITAL MARKETING PORTFOLIO STYLES ===== */

.dmp-page {
  background-color: #0d0d12;
  color: #fff;
  font-family: var(--font-secondary);
  cursor: none;
}
.dmp-page a, .dmp-page button, .dmp-page .btn {
  cursor: none;
}

/* Custom Cursor */
.dmp-cursor-dot, .dmp-cursor-outline {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.dmp-cursor-dot {
  width: 8px; height: 8px;
  background-color: var(--accent-red);
}
.dmp-cursor-outline {
  width: 40px; height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}
.dmp-cursor-outline.hovering {
  width: 60px; height: 60px;
  background-color: rgba(255, 255, 255, 0.1);
  border-color: transparent;
}

/* Ribbons Background */
.dmp-bg-ribbons {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.dmp-svg-path {
  animation: svgLineFloat 15s ease-in-out infinite alternate;
  transform-origin: center;
}

.dmp-svg-path:nth-child(2) {
  animation-duration: 25s;
  animation-direction: alternate-reverse;
}

@keyframes svgLineFloat {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(5px, -5px); }
  100% { transform: scale(0.9) translate(-5px, 5px); }
}

/* Horizontal Scroll Structure */
.dmp-scroll-container {
  position: relative;
  width: 100%;
}

.dmp-sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.dmp-horizontal-track {
  display: flex;
  height: 100vh;
  width: max-content;
  will-change: transform;
}

.dmp-section {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
  overflow: hidden; /* Keep decorative elements inside section bounds */
}

/* Decorative Animative Elements */
.dmp-dec-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.dmp-shape-ring {
  width: 60px; height: 60px;
  border: 4px solid var(--accent-red);
  border-radius: 50%;
  animation: spin 12s linear infinite, float 6s ease-in-out infinite alternate;
}

.dmp-shape-square {
  width: 40px; height: 40px;
  border: 4px solid #8a2387;
  border-radius: 8px;
  animation: spin 15s linear infinite reverse, float 8s ease-in-out infinite alternate;
}

.dmp-shape-dot {
  width: 20px; height: 20px;
  background: var(--accent-red);
  border-radius: 50%;
  animation: pulse 4s infinite, float 5s ease-in-out infinite alternate;
}

.dmp-shape-cross {
  width: 30px; height: 30px;
  position: relative;
  animation: spin 10s linear infinite, float 7s ease-in-out infinite alternate;
}
.dmp-shape-cross::before, .dmp-shape-cross::after {
  content: ''; position: absolute; background: #fff; border-radius: 2px;
}
.dmp-shape-cross::before { width: 100%; height: 4px; top: 13px; left: 0; }
.dmp-shape-cross::after { width: 4px; height: 100%; top: 0; left: 13px; }

@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes float { 100% { transform: translateY(-30px); } }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.4; } 50% { transform: scale(1.5); opacity: 0.8; } }

/* Creative Typography Effects */
.dmp-bg-title {
  position: absolute;
  top: -2%;
  left: 5%;
  font-family: var(--font-primary);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 900;
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.12);
  text-transform: uppercase;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  margin: 0;
}

.dmp-hollow-text {
  position: absolute;
  font-size: 15rem;
  font-family: var(--font-primary);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.03);
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

.dmp-text-gradient {
  background: linear-gradient(90deg, #e63946, #d90368, #8a2387);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dmp-content-wrapper {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 2;
}

/* Two-column slide layout */
.dmp-slide-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  height: 100%;
}

.dmp-slide-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dmp-slide-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.dmp-slide-title {
  font-family: var(--font-primary);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #f0f0f0;
  margin: 0;
}

.dmp-title-huge {
  font-family: var(--font-primary);
  font-size: clamp(4rem, 12vw, 11rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #f0f0f0;
  margin: 0;
}

.dmp-title-large {
  font-family: var(--font-primary);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.dmp-text {
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 900px;
}

/* Hero Section */
.dmp-hero {
  text-align: center;
}

.dmp-hero-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.dmp-hero-logo {
  height: 50px;
}

.dmp-hero-subtitle {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.dmp-hero-footer {
  margin-top: 60px;
  text-align: right;
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(90deg, #ff6b6b, #c678dd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* Intro Section */
.dmp-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.dmp-intro-logo {
  max-width: 400px;
  width: 100%;
}

.dmp-intro-tag {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  font-weight: 700;
}

/* Vision Mission */
.dmp-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 40px;
}

.dmp-vm-col h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.dmp-values-list {
  list-style: none;
  padding: 0;
}

.dmp-values-list li {
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dmp-values-list li::before {
  content: '✔';
  color: #4CAF50;
}

/* Marketing Strategy */
.dmp-strategy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.dmp-strategy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.dmp-strategy-item h4 {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #f0f0f0;
}

.dmp-strategy-item p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

.dmp-strategy-banner {
  width: 100%;
  height: 200px;
  background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&q=80&w=2000') center/cover;
  border-radius: 10px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.dmp-strategy-banner::after {
  content: 'MARKETING DIGITAL MARKETING DIGITAL MARKETING DIGITAL';
  position: absolute;
  top: 50%;
  left: -10%;
  width: 120%;
  transform: translateY(-50%) rotate(-5deg);
  background: #f1c40f;
  color: #111;
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 900;
  padding: 10px 0;
  text-align: center;
  white-space: nowrap;
}

/* Portfolio Projects */
.dmp-projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.dmp-projects-number {
  font-family: var(--font-primary);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  line-height: 0.8;
  color: #e0e0e0;
}

.dmp-projects-number span {
  font-size: clamp(2rem, 4vw, 3.5rem);
  vertical-align: super;
}

.dmp-projects-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.dmp-projects-list h3 {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-transform: uppercase;
  color: #f0f0f0;
}

/* Why Choose & Expertise (Lists) */
.dmp-list-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.dmp-big-list {
  list-style: none;
  padding: 0;
}

.dmp-big-list li {
  margin-bottom: 16px;
}

.dmp-big-list h4 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.dmp-big-list p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
}

.dmp-why-simple-list {
  list-style: none;
  padding: 0;
}

.dmp-why-simple-list li {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* CTA */
.dmp-cta-section {
  text-align: center;
}

/* Scroll Reveal */
.dmp-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.dmp-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.dmp-delay-1 { transition-delay: 0.15s; animation-delay: 0.15s; }
.dmp-delay-2 { transition-delay: 0.3s; animation-delay: 0.3s; }
.dmp-delay-3 { transition-delay: 0.45s; animation-delay: 0.45s; }
.dmp-delay-4 { transition-delay: 0.6s; animation-delay: 0.6s; }
.dmp-delay-5 { transition-delay: 0.75s; animation-delay: 0.75s; }
.dmp-delay-6 { transition-delay: 0.9s; animation-delay: 0.9s; }
.dmp-delay-7 { transition-delay: 1.05s; animation-delay: 1.05s; }
.dmp-delay-8 { transition-delay: 1.2s; animation-delay: 1.2s; }

/* Advanced Animations from Video */
.anim-blur-focus {
  opacity: 0;
  filter: blur(20px);
  transform: scale(1.1);
}
.anim-blur-focus.active {
  animation: blurFocusAnim 1.0s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes blurFocusAnim {
  0% { opacity: 0; filter: blur(20px); transform: scale(1.1); }
  100% { opacity: 1; filter: blur(0); transform: scale(1); }
}

.anim-drop-in {
  opacity: 0;
  transform: translateY(-40px);
}
.anim-drop-in.active {
  animation: dropInAnim 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes dropInAnim {
  0% { opacity: 0; transform: translateY(-40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.anim-slide-right {
  opacity: 0;
  transform: translateX(60px);
}
.anim-slide-right.active {
  animation: slideRightAnim 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes slideRightAnim {
  0% { opacity: 0; transform: translateX(60px); }
  100% { opacity: 1; transform: translateX(0); }
}

.anim-rotate-continuous {
  animation: rotateSlowly 20s linear infinite;
}
@keyframes rotateSlowly {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.anim-zoom-continuous {
  animation: zoomSlowly 15s alternate infinite ease-in-out;
}
@keyframes zoomSlowly {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

/* Responsive */
@media (max-width: 991px) {
  /* Fallback to vertical layout for mobile */
  .dmp-horizontal-track {
    display: block;
    width: 100%;
    height: auto;
    transform: none !important;
  }
  .dmp-sticky-wrapper {
    position: relative;
    height: auto;
    overflow: visible;
  }
  .dmp-section {
    width: 100%;
    height: auto;
    min-height: 100vh;
    padding: 100px 20px;
  }

  .dmp-title-huge { font-size: 4.5rem; }
  .dmp-title-large { font-size: 3.5rem; }
  .dmp-intro { grid-template-columns: 1fr; }
  .dmp-vm-grid { grid-template-columns: 1fr; }
  .dmp-list-section { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  .dmp-title-huge { font-size: 3.5rem; }
  .dmp-title-large { font-size: 2.5rem; }
  .dmp-hero-footer { font-size: 1rem; }
  .dmp-projects-header { flex-direction: column; align-items: flex-start; gap: 10px; }
  .dmp-projects-number { margin-left: 0; font-size: 3rem; }
  .dmp-projects-list { grid-template-columns: 1fr; }
  .dmp-big-list h4 { font-size: 1.5rem; }
}
