/* Custom CSS for WiFi Nusantara Website */

:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #8b5cf6;
  --secondary-color: #06d6a0;
  --secondary-dark: #059669;
  --accent-color: #f59e0b;
  --accent-pink: #ec4899;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-success: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  padding-top: 0;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

.btn-primary {
  background: var(--gradient-accent);
  background-size: 200% 200%;
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
  background-position: right center;
}

.btn-outline-primary {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-outline-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-outline-primary:hover::before {
  left: 100%;
}

.btn-outline-primary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 1);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Package card specific styling for outline button */
.package-card .btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  backdrop-filter: none;
}

.package-card .btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)), url("images/hero.jpg") center/cover no-repeat;
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.8) 0%, rgba(124, 58, 237, 0.6) 50%, rgba(37, 99, 235, 0.7) 100%);
  z-index: 1;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff08" points="0,1000 1000,0 1000,1000"/></svg>');
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 800;
}

.hero-content h1 .text-primary {
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  font-weight: 900;
}

.hero-content .lead {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  font-size: 1.25rem;
  line-height: 1.6;
}

/* Remove hero-image styles as we're using background image now */

.hero-stats .stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.hero-stats h3 {
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-stats p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-bottom: 0;
}

.hero-buttons .btn {
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline-light:hover {
  background: white;
  color: var(--primary-color);
  border-color: white;
}

/* About Section */
#about {
  padding: 5rem 0;
}

.feature-item {
  text-align: center;
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  background-size: 200% 200%;
  animation: gradientFlow 3s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.feature-item i {
  font-size: 2.5rem;
  display: block;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.feature-item:hover i {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(245, 101, 101, 0.3));
}

.feature-item h5 {
  color: var(--text-dark);
  font-weight: 700;
  margin: 1rem 0 0.5rem;
  transition: color 0.3s ease;
}

.feature-item:hover h5 {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-item p {
  transition: color 0.3s ease;
}

.feature-item:hover p {
  color: var(--text-dark);
}

.about-image img {
  box-shadow: var(--shadow-lg);
}

/* Vision Mission Values */
.vmv-card {
  background: var(--bg-white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  height: 100%;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.vmv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  background-size: 200% 200%;
  animation: gradientFlow 4s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vmv-card:nth-child(1)::before {
  background: var(--gradient-accent);
}

.vmv-card:nth-child(2)::before {
  background: var(--gradient-secondary);
}

.vmv-card:nth-child(3)::before {
  background: var(--gradient-success);
}

.vmv-card:hover::before {
  opacity: 1;
}

.vmv-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
}

.vmv-card:nth-child(1):hover {
  border-color: rgba(79, 172, 254, 0.3);
  box-shadow: 0 25px 50px rgba(79, 172, 254, 0.2);
}

.vmv-card:nth-child(2):hover {
  border-color: rgba(245, 101, 101, 0.3);
  box-shadow: 0 25px 50px rgba(245, 101, 101, 0.2);
}

.vmv-card:nth-child(3):hover {
  border-color: rgba(67, 233, 123, 0.3);
  box-shadow: 0 25px 50px rgba(67, 233, 123, 0.2);
}

.icon-wrapper {
  transition: all 0.4s ease;
}

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

.icon-wrapper i {
  font-size: 2.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.vmv-card:nth-child(1) .icon-wrapper i {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vmv-card:nth-child(2) .icon-wrapper i {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vmv-card:nth-child(3) .icon-wrapper i {
  background: var(--gradient-success);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vmv-card h4 {
  transition: all 0.3s ease;
}

.vmv-card:hover h4 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vmv-card:nth-child(1):hover h4 {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vmv-card:nth-child(2):hover h4 {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vmv-card:nth-child(3):hover h4 {
  background: var(--gradient-success);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vmv-card p {
  transition: color 0.3s ease;
}

.vmv-card:hover p {
  color: var(--text-dark);
  font-weight: 500;
}

/* Services Section */
/* Service Cards Horizontal Layout */
.service-row {
  margin-bottom: 80px !important;
  padding: 40px 0;
}

.service-row:last-child {
  margin-bottom: 40px !important;
}

.service-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.service-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.service-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.service-image-wrapper:hover .service-photo {
  transform: scale(1.05);
}

.service-content-horizontal {
  padding: 20px 0;
}

.service-badge-horizontal {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.service-badge-horizontal:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.service-content-horizontal h3 {
  color: #1a202c;
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 700;
}

.service-content-horizontal p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a5568;
  font-weight: 500;
}

.service-features-horizontal {
  margin: 0;
}

.service-features-horizontal li {
  color: #2d3748;
  margin-bottom: 15px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.service-features-horizontal li:last-child {
  margin-bottom: 0;
}

.service-features-horizontal .fas.fa-check {
  color: #48bb78 !important;
  font-size: 1rem;
  background: rgba(72, 187, 120, 0.1);
  padding: 4px;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animation for service rows */
.service-row {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.service-row:nth-child(2) {
  animation-delay: 0.2s;
}

.service-row:nth-child(3) {
  animation-delay: 0.4s;
}

.service-row:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design for Horizontal Layout */
@media (max-width: 991.98px) {
  .service-row {
    margin-bottom: 60px !important;
    padding: 30px 0;
  }

  .service-photo {
    height: 300px;
  }

  .service-content-horizontal {
    padding: 30px 0 0 0;
    text-align: center;
  }

  .service-content-horizontal h3 {
    font-size: 1.75rem;
  }

  .service-content-horizontal p {
    font-size: 1rem;
  }

  .service-features-horizontal {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .service-row {
    margin-bottom: 50px !important;
    padding: 20px 0;
  }

  .service-photo {
    height: 250px;
  }

  .service-content-horizontal h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .service-content-horizontal p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .service-badge-horizontal {
    font-size: 0.8rem;
    padding: 10px 20px;
    margin-bottom: 20px;
  }

  .service-features-horizontal li {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .service-features-horizontal .fas.fa-check {
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
  }
}

@media (max-width: 575.98px) {
  .service-row {
    margin-bottom: 40px !important;
  }

  .service-photo {
    height: 200px;
  }

  .service-content-horizontal {
    padding: 25px 0 0 0;
  }

  .service-content-horizontal h3 {
    font-size: 1.3rem;
  }

  .service-content-horizontal p {
    font-size: 0.9rem;
  }

  .service-features-horizontal {
    max-width: 100%;
  }
}

/* Modern Service Cards */
.service-card-modern {
  background: var(--bg-white);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  position: relative;
}

.service-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.service-card-modern:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.service-card-modern:hover::before {
  opacity: 1;
}

.service-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.service-card-modern:hover .service-image {
  transform: scale(1.05) rotate(2deg);
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.15));
}

.service-content {
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
  transition: all 0.3s ease;
}

.service-card-modern:hover .service-badge {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.service-content h4 {
  color: var(--text-dark);
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.service-card-modern:hover .service-content h4 {
  color: var(--primary-color);
}

.service-features {
  margin: 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  padding-left: 0.5rem;
}

.service-card-modern:hover .service-features li {
  color: var(--text-dark);
  border-left-color: var(--primary-color);
  padding-left: 1rem;
}

.service-features li i {
  transition: all 0.3s ease;
}

.service-card-modern:hover .service-features li i {
  transform: scale(1.1);
  color: var(--primary-color) !important;
}

/* Responsive Design for Service Cards */
@media (max-width: 992px) {
  .service-card-modern {
    margin-bottom: 2rem;
  }

  .service-image-container {
    height: 180px;
    padding: 15px;
  }

  .service-content {
    padding: 1.5rem;
  }

  .service-content h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .service-card-modern {
    margin-bottom: 1.5rem;
  }

  .service-image-container {
    height: 160px;
    padding: 10px;
  }

  .service-content {
    padding: 1.25rem;
  }

  .service-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .service-content h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .service-features li {
    font-size: 0.9rem;
    padding: 0.4rem 0;
  }

  .service-card-modern:hover {
    transform: translateY(-8px) scale(1.01);
  }
}

@media (max-width: 576px) {
  .service-image-container {
    height: 140px;
  }

  .service-content {
    padding: 1rem;
  }

  .service-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }

  .service-content h4 {
    font-size: 0.95rem;
  }

  .service-features li {
    font-size: 0.85rem;
  }
}

/* Legacy service card styles for backward compatibility */
.service-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-secondary);
  background-size: 200% 200%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover .service-icon {
  background-position: right center;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(245, 101, 101, 0.3);
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

/* Packages Section */
.package-card {
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  background-size: 200% 200%;
  animation: gradientFlow 3s ease-in-out infinite;
}

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

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-card.popular {
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box, var(--gradient-success) border-box;
  transform: scale(1.05);
}

.package-card.popular::before {
  background: var(--gradient-success);
}

.package-card.recommended {
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box, var(--gradient-secondary) border-box;
}

.package-card.recommended::before {
  background: var(--gradient-secondary);
}

.popular-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  background: var(--secondary-color);
}

.recommended-badge {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  box-shadow: 0 3px 12px rgba(255, 107, 53, 0.3);
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.package-header {
  text-align: center;
  padding: 2rem 2rem 1rem;
}

.package-speed {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
}

.package-price {
  margin-bottom: 1rem;
}

.package-price .price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
}

.package-price .period {
  color: var(--text-light);
  font-size: 1rem;
}

.package-features {
  padding: 0 2rem;
  flex-grow: 1;
}

.package-features ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.package-features ul li:last-child {
  border-bottom: none;
}

.package-footer {
  padding: 1rem 2rem 2rem;
  margin-top: auto;
}

/* Testimonials */
.testimonial-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stars i {
  font-size: 1.25rem;
}

.testimonial-author strong {
  color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 400% 400%;
  animation: gradientShift 8s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

/* Contact Cards */
.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.phone-card::before {
  background: var(--gradient-accent);
}
.whatsapp-card::before {
  background: var(--gradient-success);
}
.email-card::before {
  background: var(--gradient-secondary);
}
.location-card::before {
  background: var(--gradient-primary);
}

.contact-card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
}

.contact-card-icon::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--gradient-accent);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.phone-card .contact-card-icon::before {
  background: var(--gradient-accent);
}
.whatsapp-card .contact-card-icon::before {
  background: var(--gradient-success);
}
.email-card .contact-card-icon::before {
  background: var(--gradient-secondary);
}
.location-card .contact-card-icon::before {
  background: var(--gradient-primary);
}

.contact-card:hover .contact-card-icon::before {
  opacity: 1;
}

.contact-card:hover .contact-card-icon {
  transform: scale(1.1) rotate(10deg);
  background: rgba(255, 255, 255, 0.9);
}

.contact-card-icon i {
  font-size: 2rem;
  color: white;
  transition: all 0.4s ease;
}

.contact-card:hover .contact-card-icon i {
  color: white;
  text-shadow: 0 0 20px rgba(79, 172, 254, 0.8);
  filter: drop-shadow(0 0 10px rgba(79, 172, 254, 0.6));
}

.phone-card:hover .contact-card-icon i {
  color: white;
  text-shadow: 0 0 20px rgba(79, 172, 254, 0.8);
  filter: drop-shadow(0 0 10px rgba(79, 172, 254, 0.6));
}

.whatsapp-card:hover .contact-card-icon i {
  color: white;
  text-shadow: 0 0 20px rgba(37, 211, 102, 0.8);
  filter: drop-shadow(0 0 10px rgba(37, 211, 102, 0.6));
}

.email-card:hover .contact-card-icon i {
  color: white;
  text-shadow: 0 0 20px rgba(245, 101, 101, 0.8);
  filter: drop-shadow(0 0 10px rgba(245, 101, 101, 0.6));
}

.location-card:hover .contact-card-icon i {
  color: white;
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.6));
}

.contact-card h5 {
  color: white;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.contact-card:hover h5 {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.contact-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-link:hover {
  color: #ffd700;
  transform: scale(1.05);
}

/* WhatsApp Buttons */
.whatsapp-buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.wa-btn {
  background: rgba(37, 211, 102, 0.2);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.wa-btn:hover {
  background: rgba(37, 211, 102, 0.8);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Quick Contact Form */
.quick-contact-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.quick-contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  background-size: 200% 200%;
  animation: gradientFlow 3s ease-in-out infinite;
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h3 {
  color: white;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-header p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* Modern Form Styling */
.contact-form-modern .form-floating {
  position: relative;
}

.contact-form-modern .form-control,
.contact-form-modern .form-select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

/* Fix option colors for better visibility */
.contact-form-modern .form-select option {
  background: #2d3748;
  color: white;
  padding: 10px;
}

.contact-form-modern .form-select option:hover,
.contact-form-modern .form-select option:focus {
  background: var(--primary-color);
  color: white;
}

.contact-form-modern .form-select option[value=""] {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.contact-form-modern .form-control:focus,
.contact-form-modern .form-select:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(79, 172, 254, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(79, 172, 254, 0.25);
  color: white;
}

.contact-form-modern .form-floating > label {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.contact-form-modern .form-control:focus ~ label,
.contact-form-modern .form-control:not(:placeholder-shown) ~ label,
.contact-form-modern .form-select:focus ~ label,
.contact-form-modern .form-select:not([value=""]) ~ label {
  color: #4facfe;
}

.contact-form-modern .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Modern Submit Button */
.btn-submit-modern {
  position: relative;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 1rem 3rem;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 1;
}

.btn-submit-modern .btn-text {
  position: relative;
  z-index: 2;
  color: white;
  transition: all 0.4s ease;
}

.btn-submit-modern .btn-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-success);
  background-size: 200% 200%;
  animation: gradientFlow 3s ease-in-out infinite;
  border-radius: 50px;
  z-index: 1;
  transition: all 0.4s ease;
}

.btn-submit-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.btn-submit-modern:hover .btn-bg {
  background-size: 300% 300%;
}

.btn-submit-modern:hover .btn-text {
  color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.form-control,
.form-select {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1f2937 0%, #111827 50%, #0f172a 100%) !important;
  background-size: 400% 400%;
  animation: gradientShift 20s ease infinite;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(99, 102, 241, 0.1) 50%, transparent 70%);
  background-size: 200% 200%;
  animation: shimmer 8s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

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

footer a {
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  z-index: 10;
}

footer a:hover {
  color: var(--primary-color) !important;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  color: white !important;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  color: white;
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Accordion Customization */
.accordion-button {
  background: var(--bg-white);
  border: none;
  font-weight: 600;
  color: var(--text-dark);
}

.accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.accordion-item {
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    text-align: center;
    min-height: 100vh;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .hero-content .lead {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }

  .hero-stats .stat-item {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero-stats h3 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }

  .hero-stats p {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    padding: 1rem 2rem;
  }

  .hero-buttons .btn:last-child {
    margin-bottom: 0;
  }

  .package-card.popular {
    transform: none;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    margin-bottom: 2rem;
  }

  .contact-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
  }

  .whatsapp-float a {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-stats .stat-item {
    padding: 1.8rem 1.2rem;
    margin-bottom: 1.2rem;
    min-height: 110px;
  }

  .hero-stats h3 {
    font-size: 1.6rem;
    line-height: 1.1;
    margin-bottom: 0.6rem;
  }

  .hero-stats p {
    font-size: 0.85rem;
    line-height: 1.2;
  }

  .package-speed {
    font-size: 2rem;
  }

  .package-price .price {
    font-size: 1.5rem;
  }

  .service-card,
  .testimonial-card,
  .contact-form {
    padding: 1.5rem;
  }
}

/* Floating Particles Effect */
.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent), radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4), transparent), radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.3), transparent), radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.2), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: float 20s linear infinite;
  z-index: 1;
}

@keyframes float {
  0% {
    transform: translateY(0px) translateX(0px);
  }
  33% {
    transform: translateY(-10px) translateX(10px);
  }
  66% {
    transform: translateY(5px) translateX(-5px);
  }
  100% {
    transform: translateY(0px) translateX(0px);
  }
}

/* Glow Effects */
.glow-effect {
  position: relative;
}

.glow-effect::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-accent);
  border-radius: inherit;
  z-index: -1;
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glow-effect:hover::before {
  opacity: 0.7;
}

/* Utility Classes */
.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background: var(--primary-color) !important;
}

.border-primary {
  border-color: var(--primary-color) !important;
}

.shadow-custom {
  box-shadow: var(--shadow);
}

.shadow-lg-custom {
  box-shadow: var(--shadow-lg);
}

.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Loading Animation */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--primary-color);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Success Message */
.success-message {
  background: var(--secondary-color);
  color: white;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  display: none;
}

.success-message.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}
