/**
 * TINGLE DIGITAL - Homepage Sections Styles
 * Light Theme - Nova Paleta 2025
 *
 * @version 2.0.0
 */

/* ============================================
 * SECTION BASE STYLES
 * ============================================ */

.section {
  position: relative;
  padding: var(--space-24) 0;
  overflow: hidden;
}

.section-light {
  background: var(--light-primary);
  color: var(--text-primary);
}

.section-alt {
  background: var(--light-secondary);
  color: var(--text-primary);
}

.section-gradient {
  background: linear-gradient(
    180deg,
    var(--light-primary) 0%,
    var(--light-secondary) 100%
  );
}

/* Legacy dark classes - remap to light */
.section-dark {
  background: var(--light-primary);
  color: var(--text-primary);
}

.section-darker {
  background: var(--light-secondary);
  color: var(--text-primary);
}

.section-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-16);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 112, 76, 0.1);
  border: 1px solid rgba(255, 112, 76, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--tingle-coral);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  margin-bottom: var(--space-6);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  color: var(--tingle-brown);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-6);
}

.section-title-gradient {
  background: var(--gradient-coral-amber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* ============================================
 * SERVICES SECTION
 * ============================================ */

.services-section {
  background: var(--light-primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

/* 8-card grid layout */
.services-grid-8 {
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

/* 9-card grid layout */
.services-grid-9 {
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

/* Service Card */
.service-card {
  position: relative;
  padding: var(--space-8);
  background: white;
  border: 1px solid rgba(50, 30, 12, 0.08);
  border-radius: var(--radius-2xl);
  text-align: center;
  transition: var(--transition-all);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.services-grid-8 .service-card,
.services-grid-9 .service-card {
  padding: var(--space-6);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-coral-amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-normal) var(--ease-snap);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(50, 30, 12, 0.12);
  box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 112, 76, 0.1), rgba(253, 176, 19, 0.1));
  border-radius: var(--radius-xl);
  transition: transform var(--duration-normal) var(--ease-bounce);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-icon svg,
.service-icon img {
  width: 48px;
  height: 48px;
  color: var(--tingle-coral);
}

/* Service Icon Color Variants */
.service-icon-coral {
  background: linear-gradient(135deg, rgba(255, 112, 76, 0.12), rgba(255, 112, 76, 0.05));
}
.service-icon-coral svg { color: var(--tingle-coral); }

.service-icon-turquoise {
  background: linear-gradient(135deg, rgba(2, 176, 181, 0.12), rgba(2, 176, 181, 0.05));
}
.service-icon-turquoise svg { color: var(--tingle-turquoise); }

.service-icon-amber {
  background: linear-gradient(135deg, rgba(253, 176, 19, 0.12), rgba(253, 176, 19, 0.05));
}
.service-icon-amber svg { color: var(--tingle-amber); }

.service-icon-magenta {
  background: linear-gradient(135deg, rgba(229, 59, 88, 0.12), rgba(229, 59, 88, 0.05));
}
.service-icon-magenta svg { color: var(--tingle-magenta); }

.service-icon-green {
  background: linear-gradient(135deg, rgba(141, 170, 57, 0.12), rgba(141, 170, 57, 0.05));
}
.service-icon-green svg { color: var(--tingle-green); }

/* 8-card grid adjustments */
.services-grid-8 .service-icon,
.services-grid-9 .service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-4);
}

.services-grid-8 .service-icon svg,
.services-grid-9 .service-icon svg {
  width: 36px;
  height: 36px;
}

.services-grid-8 .service-title,
.services-grid-9 .service-title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.services-grid-8 .service-description,
.services-grid-9 .service-description {
  font-size: var(--text-sm);
  margin-bottom: 0;
  line-height: var(--leading-relaxed);
}

.service-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--tingle-brown);
  margin-bottom: var(--space-4);
}

.service-description {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--tingle-coral);
  text-decoration: none;
  transition: var(--transition-all);
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-fast) var(--ease-out);
}

.service-link:hover {
  color: var(--tingle-magenta);
}

.service-link:hover svg {
  transform: translateX(5px);
}

/* Service Card Colors */
.service-card[data-color="coral"] .service-icon {
  background: linear-gradient(135deg, rgba(255, 112, 76, 0.15), rgba(255, 112, 76, 0.05));
}
.service-card[data-color="coral"] .service-icon svg { color: var(--tingle-coral); }

.service-card[data-color="turquoise"] .service-icon {
  background: linear-gradient(135deg, rgba(2, 176, 181, 0.15), rgba(2, 176, 181, 0.05));
}
.service-card[data-color="turquoise"] .service-icon svg { color: var(--tingle-turquoise); }

.service-card[data-color="magenta"] .service-icon {
  background: linear-gradient(135deg, rgba(229, 59, 88, 0.15), rgba(229, 59, 88, 0.05));
}
.service-card[data-color="magenta"] .service-icon svg { color: var(--tingle-magenta); }

.service-card[data-color="amber"] .service-icon {
  background: linear-gradient(135deg, rgba(253, 176, 19, 0.15), rgba(253, 176, 19, 0.05));
}
.service-card[data-color="amber"] .service-icon svg { color: var(--tingle-amber); }

.service-card[data-color="green"] .service-icon {
  background: linear-gradient(135deg, rgba(141, 170, 57, 0.15), rgba(141, 170, 57, 0.05));
}
.service-card[data-color="green"] .service-icon svg { color: var(--tingle-green); }

/* Legacy colors */
.service-card[data-color="purple"] .service-icon {
  background: linear-gradient(135deg, rgba(229, 59, 88, 0.15), rgba(229, 59, 88, 0.05));
}
.service-card[data-color="purple"] .service-icon svg { color: var(--tingle-magenta); }

.service-card[data-color="cyan"] .service-icon {
  background: linear-gradient(135deg, rgba(2, 176, 181, 0.15), rgba(2, 176, 181, 0.05));
}
.service-card[data-color="cyan"] .service-icon svg { color: var(--tingle-turquoise); }

.service-card[data-color="gold"] .service-icon {
  background: linear-gradient(135deg, rgba(253, 176, 19, 0.15), rgba(253, 176, 19, 0.05));
}
.service-card[data-color="gold"] .service-icon svg { color: var(--tingle-amber); }

/* ============================================
 * STATS/NUMBERS SECTION
 * ============================================ */

.stats-section {
  background: var(--light-secondary);
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-mesh-light);
  opacity: 0.5;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

/* Stat Card */
.stat-card {
  text-align: center;
  padding: var(--space-8);
  position: relative;
}

.stat-card::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(50, 30, 12, 0.1),
    transparent
  );
}

.stat-card:last-child::after {
  display: none;
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.stat-icon svg {
  width: 32px;
  height: 32px;
  color: var(--tingle-coral);
}

.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  color: var(--tingle-brown);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-suffix {
  font-size: var(--text-3xl);
  color: var(--tingle-coral);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
}

/* ============================================
 * CLIENTS SECTION
 * ============================================ */

.clients-section {
  background: var(--light-primary);
  padding: var(--space-16) 0;
}

.clients-wrapper {
  position: relative;
  overflow: hidden;
}

/* Fade edges */
.clients-wrapper::before,
.clients-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.clients-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--light-primary), transparent);
}

.clients-wrapper::after {
  right: 0;
  background: linear-gradient(-90deg, var(--light-primary), transparent);
}

/* Infinite Scroll Track */
.clients-track {
  display: flex;
  gap: var(--space-12);
  animation: scroll-clients 30s linear infinite;
}

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

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

/* Client Logo */
.client-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4) var(--space-8);
  min-width: 180px;
  height: 80px;
  transition: var(--transition-all);
}

.client-logo img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: var(--transition-all);
}

.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ============================================
 * TESTIMONIALS SECTION
 * ============================================ */

.testimonials-section {
  background: var(--light-secondary);
  position: relative;
}

.testimonials-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Testimonial Card */
.testimonial-card {
  position: relative;
  padding: var(--space-12);
  background: white;
  border: 1px solid rgba(50, 30, 12, 0.08);
  border-radius: var(--radius-2xl);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.testimonial-quote-icon {
  position: absolute;
  top: var(--space-8);
  left: var(--space-8);
  width: 60px;
  height: 60px;
  opacity: 0.1;
  color: var(--tingle-coral);
}

.testimonial-quote-icon svg {
  width: 100%;
  height: 100%;
}

.testimonial-content {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--tingle-brown);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--tingle-coral);
  box-shadow: var(--shadow-coral);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--tingle-brown);
}

.testimonial-role {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.testimonial-company {
  color: var(--tingle-coral);
}

/* Testimonials Navigation */
.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.testimonial-nav-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid rgba(50, 30, 12, 0.1);
  border-radius: 50%;
  color: var(--tingle-brown);
  cursor: pointer;
  transition: var(--transition-all);
}

.testimonial-nav-btn:hover {
  background: var(--tingle-coral);
  border-color: var(--tingle-coral);
  color: white;
}

.testimonial-nav-btn svg {
  width: 20px;
  height: 20px;
}

/* Testimonials Dots */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(50, 30, 12, 0.2);
  cursor: pointer;
  transition: var(--transition-all);
}

.testimonial-dot.active,
.testimonial-dot:hover {
  background: var(--tingle-coral);
  transform: scale(1.2);
}

/* ============================================
 * CTA SECTION
 * ============================================ */

.cta-section {
  position: relative;
  padding: var(--space-32) 0;
  background: var(--light-secondary);
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.cta-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--tingle-coral);
  top: -20%;
  left: -10%;
  animation: orb-float-1 20s ease-in-out infinite;
}

.cta-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--tingle-turquoise);
  bottom: -20%;
  right: -10%;
  animation: orb-float-2 25s ease-in-out infinite;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  color: var(--tingle-brown);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-6);
}

.cta-description {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-10);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

.cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 18px;
  padding-bottom: 18px;
}

.cta-buttons .btn span {
  line-height: 1;
}

.cta-btn {
  padding: var(--space-5) var(--space-12);
  font-size: var(--text-lg);
}

.cta-btn-primary {
  background: var(--gradient-coral-amber);
  background-size: 200% 200%;
  color: white;
  box-shadow: var(--shadow-coral);
}

.cta-btn-primary:hover {
  background-position: 100% 0;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px -10px rgba(255, 112, 76, 0.5);
}

/* ============================================
 * SECTION DIVIDERS
 * ============================================ */

.wave-divider {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}

.wave-divider-top {
  top: -1px;
}

.wave-divider-bottom {
  bottom: -1px;
  transform: rotate(180deg);
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.wave-divider .wave-fill {
  fill: var(--light-primary);
}

.wave-divider-alt .wave-fill {
  fill: var(--light-secondary);
}

/* Animated Wave */
.wave-animated {
  animation: wave-flow 15s linear infinite;
}

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

/* Gradient Divider */
.gradient-divider {
  position: absolute;
  left: 0;
  right: 0;
  height: 200px;
  pointer-events: none;
}

.gradient-divider-top {
  top: 0;
  background: linear-gradient(180deg, var(--light-primary), transparent);
}

.gradient-divider-bottom {
  bottom: 0;
  background: linear-gradient(0deg, var(--light-primary), transparent);
}

/* ============================================
 * RESPONSIVE - TABLET
 * ============================================ */

@media (max-width: 1024px) {
  .section {
    padding: var(--space-20) 0;
  }

  .section-inner {
    padding: 0 var(--space-6);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

  .services-grid-8 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }

  .services-grid-9 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

  .stat-card:nth-child(2)::after {
    display: none;
  }

  .cta-title {
    font-size: var(--text-4xl);
  }
}

/* ============================================
 * RESPONSIVE - MOBILE
 * ============================================ */

@media (max-width: 768px) {
  .section {
    padding: var(--space-16) 0;
  }

  .section-inner {
    padding: 0 var(--space-4);
  }

  .section-header {
    margin-bottom: var(--space-12);
  }

  .section-title {
    font-size: var(--text-3xl);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .services-grid-8 {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .services-grid-9 {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .services-grid-8 .service-card,
  .services-grid-9 .service-card {
    padding: var(--space-6);
  }

  .services-grid-8 .service-title,
  .services-grid-9 .service-title {
    font-size: var(--text-lg);
  }

  .services-grid-8 .service-description,
  .services-grid-9 .service-description {
    font-size: var(--text-sm);
  }

  .service-card {
    padding: var(--space-8);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .stat-card {
    padding: var(--space-4);
  }

  .stat-card::after {
    display: none;
  }

  .stat-number {
    font-size: var(--text-4xl);
  }

  .stat-suffix {
    font-size: var(--text-2xl);
  }

  .clients-wrapper::before,
  .clients-wrapper::after {
    width: 50px;
  }

  .client-logo {
    min-width: 140px;
    padding: var(--space-3) var(--space-4);
  }

  .testimonial-card {
    padding: var(--space-8);
  }

  .testimonial-content {
    font-size: var(--text-lg);
  }

  .cta-section {
    padding: var(--space-20) 0;
  }

  .cta-title {
    font-size: var(--text-3xl);
  }

  .cta-description {
    font-size: var(--text-lg);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .wave-divider svg {
    height: 50px;
  }
}

/* ============================================
 * RESPONSIVE - SMALL MOBILE
 * ============================================ */

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

  .stat-card {
    border-bottom: 1px solid rgba(50, 30, 12, 0.1);
    padding-bottom: var(--space-6);
  }

  .stat-card:last-child {
    border-bottom: none;
  }

  .stat-number {
    font-size: var(--text-3xl);
  }
}

/* ============================================
 * REDUCED MOTION
 * ============================================ */

@media (prefers-reduced-motion: reduce) {
  .clients-track,
  .cta-orb,
  .wave-animated {
    animation: none !important;
  }

  .service-card:hover,
  .service-card:hover .service-icon {
    transform: none;
  }
}

/* ==========================================================================

/* ==========================================================================
   Video Showcase Section
   ========================================================================== */

.video-showcase-section {
	padding: var(--spacing-3xl, 6rem) 0;
	background: var(--light-secondary, #F8F9FA);
	position: relative;
	overflow: hidden;
}

.video-showcase-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(ellipse at 20% 50%, rgba(255, 112, 76, 0.06) 0%, transparent 50%),
		radial-gradient(ellipse at 80% 50%, rgba(2, 176, 181, 0.06) 0%, transparent 50%);
	pointer-events: none;
}

.video-container {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
}

.video-wrapper {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: linear-gradient(135deg, rgba(255, 112, 76, 0.15), rgba(2, 176, 181, 0.15));
	padding: 4px;
	box-shadow: 
		0 25px 50px -12px rgba(50, 30, 12, 0.15),
		0 0 0 1px rgba(50, 30, 12, 0.05);
}

.video-wrapper::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: conic-gradient(
		from 0deg,
		transparent,
		rgba(255, 112, 76, 0.3),
		transparent,
		rgba(2, 176, 181, 0.3),
		transparent
	);
	animation: borderRotate 8s linear infinite;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.video-wrapper:hover::before {
	opacity: 1;
}

@keyframes borderRotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.showcase-video {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 16px;
	position: relative;
	z-index: 1;
	background: var(--light-primary, #FFFFFF);
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.video-overlay {
	position: absolute;
	top: 4px;
	left: 4px;
	right: 4px;
	bottom: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(4px);
	border-radius: 16px;
	z-index: 2;
	cursor: pointer;
	transition: all 0.4s ease;
}

.video-overlay.hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.video-play-btn {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: none;
	background: var(--gradient-warm, linear-gradient(135deg, #E53B58, #FF704C, #FDB013));
	color: white;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 
		0 10px 40px rgba(255, 112, 76, 0.4),
		0 0 0 0 rgba(255, 112, 76, 0.4);
	animation: playPulse 2s ease-in-out infinite;
}

.video-play-btn svg {
	width: 40px;
	height: 40px;
	margin-left: 5px;
}

.video-play-btn:hover {
	transform: scale(1.1);
	box-shadow: 
		0 15px 50px rgba(255, 112, 76, 0.5),
		0 0 0 15px rgba(255, 112, 76, 0.1);
}

@keyframes playPulse {
	0%, 100% {
		box-shadow: 
			0 10px 40px rgba(255, 112, 76, 0.4),
			0 0 0 0 rgba(255, 112, 76, 0.4);
	}
	50% {
		box-shadow: 
			0 10px 40px rgba(255, 112, 76, 0.4),
			0 0 0 20px rgba(255, 112, 76, 0);
	}
}

/* Responsive */
@media (max-width: 768px) {
	.video-showcase-section {
		padding: var(--spacing-2xl, 4rem) 0;
	}

	.video-wrapper {
		border-radius: 16px;
	}

	.showcase-video {
		border-radius: 12px;
	}

	.video-overlay {
		border-radius: 12px;
	}

	.video-play-btn {
		width: 80px;
		height: 80px;
	}

	.video-play-btn svg {
		width: 32px;
		height: 32px;
	}
}

/* iOS Safari Video Fix */
@supports (-webkit-touch-callout: none) {
	.showcase-video {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	
	.video-overlay {
		-webkit-tap-highlight-color: transparent;
	}
	
	.video-play-btn {
		-webkit-tap-highlight-color: transparent;
		touch-action: manipulation;
	}
}

/* Ensure video is visible on iOS */
.showcase-video {
	max-width: 100%;
	height: auto;
	-webkit-transform: translateZ(0);
}
