/* WiFi Advertising Modern Styling - Following RCS Approach */

/* WiFi Hero Section */
.wifi-hero-modern {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.wifi-hero-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.wifi-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.wifi-hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.wifi-hero-subtitle {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.wifi-hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.wifi-stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  min-width: 180px;
  transition: all 0.3s ease;
}

.wifi-stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.wifi-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.wifi-stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wifi-hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 1s both;
}

.btn-wifi-primary {
  background: white;
  color: #667eea;
  border: 2px solid white;
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-wifi-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: #667eea;
  text-decoration: none;
}

.btn-wifi-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-wifi-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  color: white;
  text-decoration: none;
}

.wifi-trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 1.2s both;
}

.wifi-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.9;
}

.wifi-trust-badge i {
  font-size: 1.1rem;
}

/* WiFi Coverage Section */
.wifi-coverage-modern {
  background: linear-gradient(135deg, #f8f9ff 0%, #fff5f8 50%, #f0f8ff 100%);
  position: relative;
  overflow: hidden;
}

.wifi-coverage-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.wifi-coverage-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.wifi-coverage-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.wifi-coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.wifi-coverage-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.wifi-coverage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.wifi-coverage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wifi-coverage-card:hover::before {
  opacity: 1;
}

.wifi-coverage-icon {
  width: 80px;
  height: 80px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #667eea;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.wifi-coverage-card:hover .wifi-coverage-icon {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  transform: scale(1.1);
}

.wifi-coverage-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.wifi-coverage-card p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.wifi-coverage-stats {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.wifi-coverage-stat {
  text-align: center;
  flex: 1;
}

.wifi-coverage-stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #667eea;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.wifi-coverage-stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 600;
}

/* WiFi Benefits Section */
.wifi-benefits-modern {
  background: white;
  position: relative;
}

.wifi-benefits-card {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(240, 147, 251, 0.05) 100%);
  border-radius: 24px;
  padding: 4rem 3rem;
  border: 1px solid rgba(102, 126, 234, 0.1);
  position: relative;
  overflow: hidden;
}

.wifi-benefits-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}

.wifi-benefits-header {
  text-align: center;
  margin-bottom: 3rem;
}

.wifi-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.wifi-benefit-item {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
}

.wifi-benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.wifi-benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.wifi-benefit-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.wifi-benefit-desc {
  color: var(--gray);
  line-height: 1.5;
}

/* WiFi Demo Section */
.wifi-demo-modern {
  background: linear-gradient(135deg, #f8f9ff 0%, #fff5f8 50%, #f0f8ff 100%);
  position: relative;
  overflow: hidden;
}

.wifi-demo-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.wifi-demo-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.wifi-demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.wifi-demo-info {
  padding: 2rem 0;
}

.wifi-demo-header {
  margin-bottom: 2rem;
}

.wifi-demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.wifi-demo-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.wifi-demo-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.wifi-demo-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #667eea;
  flex-shrink: 0;
}

.wifi-demo-feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.wifi-demo-feature-text strong {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
}

.wifi-demo-feature-text span {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.4;
}

/* WiFi Visual Demo */
.wifi-demo-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.wifi-network-demo {
  position: relative;
  width: 400px;
  height: 400px;
}

.wifi-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  animation: pulse 2s infinite;
}

.wifi-signal {
  position: absolute;
  border: 2px solid rgba(102, 126, 234, 0.2);
  border-radius: 50%;
  animation: wifiRipple 3s infinite;
}

.wifi-signal:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wifi-signal:nth-child(3) {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 1s;
}

.wifi-signal:nth-child(4) {
  width: 280px;
  height: 280px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 2s;
}

.wifi-devices {
  position: absolute;
  width: 100%;
  height: 100%;
}

.wifi-device {
  position: absolute;
  width: 40px;
  height: 40px;
  background: white;
  border: 2px solid #667eea;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #667eea;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  animation: deviceFloat 4s ease-in-out infinite;
}

.wifi-device:nth-child(1) {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.wifi-device:nth-child(2) {
  top: 15%;
  right: 25%;
  animation-delay: 1s;
}

.wifi-device:nth-child(3) {
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
}

.wifi-device:nth-child(4) {
  bottom: 15%;
  right: 20%;
  animation-delay: 3s;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes wifiRipple {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.3);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes deviceFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .wifi-hero-title {
    font-size: 3rem;
  }
  
  .wifi-hero-stats {
    gap: 2rem;
  }
  
  .wifi-coverage-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .wifi-demo-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .wifi-hero-title {
    font-size: 2.5rem;
  }
  
  .wifi-hero-subtitle {
    font-size: 1.2rem;
  }
  
  .wifi-hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .wifi-stat-item {
    min-width: 250px;
  }
  
  .wifi-hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .wifi-trust-badges {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .wifi-coverage-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .wifi-coverage-card {
    padding: 2rem;
  }
  
  .wifi-benefits-card {
    padding: 2rem;
  }
  
  .wifi-benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .wifi-network-demo {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 480px) {
  .wifi-hero-title {
    font-size: 2rem;
  }
  
  .wifi-coverage-card {
    padding: 1.5rem;
  }
  
  .wifi-benefit-item {
    padding: 1.5rem;
  }
  
  .wifi-network-demo {
    width: 250px;
    height: 250px;
  }
}