/* Marketing Page Styles */

/* Hero Section */
.marketing-hero-page{
  background:linear-gradient(135deg, rgba(11,18,32,0.95), rgba(26,32,44,0.9)), 
             url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1600&h=900&fit=crop&q=80') center/cover;
  padding:100px 0 80px;
  position:relative;
  overflow:hidden;
}
.marketing-hero-page::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 30% 50%, rgba(118,199,66,0.15), transparent 60%);
  animation:heroGlow 6s ease-in-out infinite;
}
@keyframes heroGlow{
  0%, 100%{opacity:0.5; transform:scale(1)}
  50%{opacity:0.8; transform:scale(1.1)}
}
.marketing-hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:900px;
  margin:0 auto;
}
.marketing-page-title{
  font-size:56px;
  font-weight:900;
  margin:0 0 20px;
  background:linear-gradient(135deg, #fff, var(--mavam-light));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  line-height:1.2;
}
.marketing-page-subtitle{
  font-size:20px;
  color:var(--muted);
  margin:0 0 40px;
  line-height:1.6;
}
.marketing-hero-features{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}
.marketing-hero-features span{
  background:rgba(118,199,66,0.15);
  border:1px solid rgba(118,199,66,0.3);
  color:var(--mavam-light);
  padding:12px 24px;
  border-radius:30px;
  font-size:16px;
  font-weight:600;
  backdrop-filter:blur(10px);
  transition:all 0.3s ease;
}
.marketing-hero-features span:hover{
  background:rgba(118,199,66,0.25);
  border-color:rgba(118,199,66,0.5);
  transform:translateY(-3px);
  box-shadow:0 6px 20px rgba(118,199,66,0.3);
}

/* Service Detail Section */
.marketing-service-detail{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.marketing-service-detail.reverse{
  direction:ltr;
}
.marketing-service-detail.reverse .service-detail-content{
  order:2;
}
.marketing-service-detail.reverse .service-detail-media{
  order:1;
}

/* Service Content */
.service-detail-content{
  padding:20px;
}
.service-detail-badge{
  display:inline-block;
  background:linear-gradient(135deg, var(--mavam-light), var(--mavam-primary));
  color:#0b1220;
  padding:8px 20px;
  border-radius:20px;
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:20px;
  box-shadow:0 4px 12px rgba(118,199,66,0.3);
}
.service-detail-content h2{
  font-size:36px;
  font-weight:800;
  margin:0 0 20px;
  color:var(--text);
  line-height:1.3;
}
.service-detail-content p{
  font-size:17px;
  line-height:1.8;
  color:var(--muted);
  margin:0 0 30px;
}
.service-features-list{
  list-style:none;
  padding:0;
  margin:0;
}
.service-features-list li{
  font-size:16px;
  color:var(--text);
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,0.1);
  transition:all 0.3s ease;
}
.service-features-list li:hover{
  color:var(--mavam-light);
  padding-left:10px;
  border-color:rgba(118,199,66,0.3);
}
.service-features-list li:last-child{
  border-bottom:none;
}

/* Service Media */
.service-detail-media{
  position:relative;
}
.media-showcase{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 12px 40px rgba(0,0,0,0.4);
  transition:all 0.4s ease;
}
.media-showcase:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 60px rgba(118,199,66,0.2);
}
.media-showcase img{
  width:100%;
  height:auto;
  display:block;
  transition:transform 0.4s ease;
}
.media-showcase:hover img{
  transform:scale(1.05);
}
.video-showcase{
  position:relative;
  cursor:pointer;
}
.video-play-overlay{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  transition:all 0.3s ease;
}
.video-showcase:hover .video-play-overlay{
  transform:translate(-50%, -50%) scale(1.1);
}
.video-play-overlay svg{
  filter:drop-shadow(0 8px 20px rgba(0,0,0,0.4));
}

/* Ads Platforms Grid */
.ads-platforms-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:40px;
}
.ads-platform-card{
  padding:40px 28px;
  text-align:center;
  border-radius:20px;
  transition:all 0.4s ease;
}
.platform-icon{
  font-size:56px;
  margin-bottom:20px;
  filter:grayscale(0.3);
  transition:all 0.3s ease;
}
.ads-platform-card:hover .platform-icon{
  filter:grayscale(0);
  transform:scale(1.15) rotate(-5deg);
}
.ads-platform-card h3{
  font-size:20px;
  font-weight:700;
  margin:0 0 12px;
  color:var(--text);
}
.ads-platform-card p{
  font-size:14px;
  color:var(--muted);
  margin:0;
  line-height:1.6;
}
.ads-platform-card:hover{
  transform:translateY(-8px);
  box-shadow:0 16px 48px rgba(118,199,66,0.2);
}

/* Responsive */
@media (max-width:1024px){
  .ads-platforms-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .marketing-service-detail,
  .marketing-service-detail.reverse{
    grid-template-columns:1fr;
    gap:40px;
  }
  .marketing-service-detail.reverse .service-detail-content,
  .marketing-service-detail.reverse .service-detail-media{
    order:initial;
  }
  .marketing-page-title{
    font-size:42px;
  }
}
@media (max-width:700px){
  /* Hero */
  .marketing-hero-page{
    padding:100px 0 60px;
  }
  .marketing-page-title{
    font-size:32px;
    margin-bottom:16px;
  }
  .marketing-page-subtitle{
    font-size:16px;
  }
  .marketing-hero-features{
    gap:8px;
  }
  .marketing-hero-features span{
    font-size:13px;
    padding:10px 14px;
  }
  
  /* Service Detail */
  .marketing-service-detail{
    grid-template-columns:1fr;
    gap:32px;
    padding:0;
  }
  .marketing-service-detail.reverse{
    grid-template-columns:1fr;
  }
  .marketing-service-detail.reverse .service-detail-content,
  .marketing-service-detail.reverse .service-detail-media{
    order:initial;
  }
  .service-detail-content{
    padding:0;
  }
  .service-detail-badge{
    font-size:12px;
    padding:6px 14px;
  }
  .service-detail-content h2{
    font-size:24px;
    margin-bottom:16px;
  }
  .service-detail-content p{
    font-size:15px;
    line-height:1.7;
  }
  .service-features-list{
    gap:12px;
  }
  .service-features-list li{
    font-size:15px;
    padding:12px;
  }
  .media-showcase{
    border-radius:16px;
    min-height:220px;
  }
  
  /* Ads Platforms */
  .ads-platforms-grid{
    grid-template-columns:1fr;
    gap:20px;
  }
  .ads-platform-card{
    padding:32px 24px;
  }
  .platform-icon{
    font-size:48px;
  }
  .ads-platform-card h3{
    font-size:18px;
  }
}

/* RTL Support */
[dir="rtl"] .marketing-service-detail.reverse{
  direction:rtl;
}
[dir="rtl"] .service-features-list li:hover{
  padding-left:0;
  padding-right:10px;
}

/* Force Mobile Spacing */
@media (max-width: 700px) {
  .marketing-hero-content, .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .glass-card, .glass-inner {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 24px 20px !important;
  }
  .marketing-service-detail {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
