/* Modern LED Panel Showcase Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.led-showcase {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Hero Section */
.hero-showcase {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: white;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

.led-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(2px 2px at 20px 30px, #00ff88, transparent),
    radial-gradient(2px 2px at 40px 70px, #ff0080, transparent),
    radial-gradient(1px 1px at 90px 40px, #00ffff, transparent),
    radial-gradient(1px 1px at 130px 80px, #ffff00, transparent),
    radial-gradient(2px 2px at 160px 30px, #ff4444, transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: particleMove 20s linear infinite;
  opacity: 0.4;
}

@keyframes particleMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-200px, -100px);
  }
}

.led-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 255, 136, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

.light-beams {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(0, 255, 136, 0.08) 35%,
    transparent 40%,
    transparent 60%,
    rgba(255, 0, 128, 0.08) 65%,
    transparent 70%
  );
  animation: beamMove 8s ease-in-out infinite;
}

@keyframes beamMove {
  0%,
  100% {
    transform: translateX(-100px) rotate(0deg);
  }
  50% {
    transform: translateX(100px) rotate(2deg);
  }
}

/* Main Header */
.main-header {
  position: relative;
  z-index: 100;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
}

.company-logo img {
  max-height: 60px;
  width: auto;
  filter: brightness(1.2) drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
  transition: all 0.3s ease;
}

.company-logo img:hover {
  filter: brightness(1.4) drop-shadow(0 0 15px rgba(0, 255, 136, 0.5));
  transform: scale(1.05);
}

.company-name h1 {
  font-size: 1.8rem;
  font-weight: 900;
  margin: 0;
  background: linear-gradient(45deg, #00ff88, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-link:hover {
  color: #00ff88;
  background: rgba(0, 255, 136, 0.1);
  transform: translateY(-2px);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #00ff88, #00ffff);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(45deg, #00ff88, #00ffff);
  color: #000;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
  color: #000;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #00ff88;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 255, 136, 0.2);
  padding: 2rem;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-navigation {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.mobile-nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  text-align: center;
  border: 1px solid transparent;
}

.mobile-nav-link:hover {
  color: #00ff88;
  border-color: rgba(0, 255, 136, 0.3);
  background: rgba(0, 255, 136, 0.1);
}

.mobile-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(45deg, #00ff88, #00ffff);
  color: #000;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
}

.mobile-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
  color: #000;
}

/* Hero Main Content */
.hero-main-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  gap: 4rem;
}

.hero-text-section {
  flex: 1;
  max-width: 600px;
}

.breadcrumb {
  font-size: 0.9rem;
  color: #00ff88;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.title-line {
  display: block;
  color: #ffffff;
  font-size: 3rem;
}

.title-led {
  display: block;
  background: linear-gradient(45deg, #00ff88, #00ffff, #ff0080);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
  font-size: 6rem;
  text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
  margin: 0.5rem 0;
}

.title-subtitle {
  display: block;
  font-size: 1.5rem;
  color: #cccccc;
  font-weight: 400;
  margin-top: 0.5rem;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-description {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: #00ff88;
  text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.stat-label {
  font-size: 0.9rem;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(45deg, #00ff88, #00ffff);
  color: #000;
  box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid #00ff88;
}

.btn-secondary:hover {
  background: #00ff88;
  color: #000;
  transform: translateY(-3px);
}

/* Hero Media Section */
.hero-media-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
  border-color: rgba(0, 255, 136, 0.5);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 255, 0.1));
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-image-container:hover .image-overlay {
  opacity: 1;
}

.hero-placeholder {
  width: 100%;
  max-width: 500px;
  height: 400px;
  background: linear-gradient(45deg, #1a1a2e, #16213e);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(0, 255, 136, 0.3);
  gap: 2rem;
}

.led-display-demo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.led-pixel {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(45deg, #00ff88, #00ffff);
  animation: pixelPulse 2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.led-pixel:nth-child(1) {
  animation-delay: 0s;
}
.led-pixel:nth-child(2) {
  animation-delay: 0.2s;
}
.led-pixel:nth-child(3) {
  animation-delay: 0.4s;
}
.led-pixel:nth-child(4) {
  animation-delay: 0.6s;
}
.led-pixel:nth-child(5) {
  animation-delay: 0.8s;
}
.led-pixel:nth-child(6) {
  animation-delay: 1s;
}
.led-pixel:nth-child(7) {
  animation-delay: 1.2s;
}
.led-pixel:nth-child(8) {
  animation-delay: 1.4s;
}
.led-pixel:nth-child(9) {
  animation-delay: 1.6s;
}

@keyframes pixelPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.demo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #00ff88;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.demo-text span:first-child {
  font-size: 1.5rem;
}

.demo-text span:last-child {
  font-size: 1rem;
  color: #cccccc;
}

/* Responsive Design for Header */
@media (max-width: 1024px) {
  .hero-main-content {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }

  .hero-text-section {
    max-width: none;
  }

  .hero-title {
    font-size: 3rem;
  }

  .title-led {
    font-size: 4.5rem;
  }

  .hero-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .main-navigation {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .header-container {
    padding: 1rem;
  }

  .hero-main-content {
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .title-led {
    font-size: 3.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

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

  .led-display-demo {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .led-pixel {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .company-logo img {
    max-height: 45px;
  }

  .company-name h1 {
    font-size: 1.4rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .title-led {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .hero-placeholder {
    height: 300px;
  }

  .led-display-demo {
    gap: 8px;
  }

  .led-pixel {
    width: 25px;
    height: 25px;
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.title-accent {
  color: #00ff88;
}

.title-main {
  color: #333;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Portfolio Section */
.portfolio-showcase {
  padding: 6rem 0;
  background: #f8f9fa;
}

.projects-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.project-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.project-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.project-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .project-thumb {
  transform: scale(1.1);
}

.project-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.led-icon {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.led-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #00ff88;
  animation: dotPulse 2s ease-in-out infinite;
}

.led-dot:nth-child(2) {
  animation-delay: 0.5s;
}
.led-dot:nth-child(3) {
  animation-delay: 1s;
}
.led-dot:nth-child(4) {
  animation-delay: 1.5s;
}

@keyframes dotPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.project-info {
  margin-top: auto;
}

.project-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.project-location,
.project-client {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #cccccc;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.project-actions {
  margin-top: 1rem;
}

.btn-view-details {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(45deg, #00ff88, #00ffff);
  color: #000;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.btn-view-details:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

.video-indicator {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.led-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(45deg, #ff0080, #ff4444);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials-showcase {
  padding: 6rem 0;
  background: white;
}

.testimonials-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-card.featured {
  border-color: #f39c12;
  box-shadow: 0 10px 40px rgba(243, 156, 18, 0.2);
}

.testimonial-video {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.testimonial-card:hover .video-thumb {
  transform: scale(1.05);
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #999;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-play-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #f39c12;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.testimonial-content {
  padding: 2rem;
}

.client-info {
  margin-bottom: 1rem;
}

.client-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.25rem;
}

.client-company {
  color: #00ff88;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.project-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 0.9rem;
}

.rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star-icon {
  color: #ddd;
  font-size: 1.2rem;
}

.star-icon.filled {
  color: #ffc107;
}

.testimonial-text {
  font-style: italic;
  color: #555;
  line-height: 1.6;
  border: none;
  margin: 0;
  padding: 0;
}

/* CTA Section */
.cta-showcase {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: white;
  text-align: center;
  overflow: hidden;
}

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

.cta-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.cta-description {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 3rem;
  line-height: 1.6;
}

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

.btn-cta-primary,
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-cta-primary {
  background: linear-gradient(45deg, #00ff88, #00ffff);
  color: #000;
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3);
}

.btn-cta-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 255, 136, 0.4);
}

.btn-cta-secondary {
  background: transparent;
  color: white;
  border: 2px solid #00ff88;
}

.btn-cta-secondary:hover {
  background: #00ff88;
  color: #000;
  transform: translateY(-5px);
}

/* Modal Styles */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  backdrop-filter: blur(10px);
}

.modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: linear-gradient(45deg, #00ff88, #00ffff);
  color: #000;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
}

.modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: calc(90vh - 80px);
  overflow-y: auto;
}

.modal-media {
  padding: 2rem;
  background: #f8f9fa;
}

.media-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.modal-image,
.modal-video {
  width: 100%;
  height: auto;
  display: block;
}

.modal-details {
  padding: 2rem;
}

.project-specs {
  margin-bottom: 2rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

.spec-label {
  font-weight: 600;
  color: #333;
  min-width: 100px;
}

.spec-value {
  color: #666;
}

.project-description h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.description-text,
.content-text {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-modal-primary,
.btn-modal-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-modal-primary {
  background: linear-gradient(45deg, #00ff88, #00ffff);
  color: #000;
}

.btn-modal-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 255, 136, 0.3);
}

.btn-modal-secondary {
  background: #f8f9fa;
  color: #333;
  border: 1px solid #ddd;
}

.btn-modal-secondary:hover {
  background: #e9ecef;
}

/* Video Modal */
.video-modal-container {
  max-width: 800px;
}

.video-player {
  padding: 2rem;
  text-align: center;
}

.video-player video {
  width: 100%;
  max-height: 400px;
  border-radius: 10px;
}

/* Icons (using CSS shapes) */
.arrow-down,
.arrow-right,
.arrow-up {
  width: 0;
  height: 0;
  display: inline-block;
}

.arrow-down {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid currentColor;
}

.arrow-right {
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid currentColor;
}

.arrow-up {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 8px solid currentColor;
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid currentColor;
  margin-left: 4px;
}

.location-icon,
.client-icon,
.calendar-icon,
.dimensions-icon,
.tech-icon,
.video-icon,
.star-icon,
.whatsapp-icon {
  width: 16px;
  height: 16px;
  background: currentColor;
  border-radius: 2px;
  display: inline-block;
}

/* Floating Buttons */
.floating-button {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  z-index: 1000;
  cursor: pointer;
}

.floating-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.whatsapp-button {
  bottom: 30px;
  right: 30px;
  background: #25d366;
  color: white;
}

.whatsapp-button a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.scroll-top-button {
  bottom: 100px;
  right: 30px;
  background: #333;
  color: white;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.scroll-top-button.visible {
  opacity: 1;
  visibility: visible;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .title-led {
    font-size: 4rem;
  }

  .projects-grid,
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .modal-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .title-led {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .projects-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .floating-button {
    width: 50px;
    height: 50px;
  }

  .whatsapp-button {
    bottom: 20px;
    right: 20px;
  }

  .scroll-top-button {
    bottom: 80px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .hero-showcase {
    padding: 2rem 0;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .title-led {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .modal-container {
    width: 95%;
    margin: 2rem auto;
  }

  .modal-header,
  .modal-details,
  .modal-media {
    padding: 1rem;
  }
}
