/* ======================= */
/*       Hero Section       */
/* ======================= */
.hero {
  margin-top: 80px;
  padding: 6rem 2rem;
  background: 
    linear-gradient(45deg, rgba(27, 26, 26, 0.8), rgba(35, 34, 34, 0.9)),
    url('../assets/images/hero-img.jpg') 
    center/cover no-repeat;
  color: var(--secondary);
  text-align: center;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--secondary);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  color: var(--secondary);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--secondary);
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--primary);
  color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* ======================= */
/*       Page Section       */
/* ======================= */
.page-section {
  display: none;
}

.page-section.active {
  display: block;
}

/* Fixed anchor scrolling */
#about-us {
  scroll-margin-top: 80px;
}

/* ======================= */
/*       Headings           */
/* ======================= */
h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
  font-weight: 800;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
}

/* ======================= */
/*      Services Grid       */
/* ======================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.package-badge {
  background: var(--primary);
  color: var(--secondary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.enterprise-badge {
  background: var(--accent);
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1rem 0;
}

.price-period {
  font-size: 1rem;
  color: var(--text-light);
}

.service-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.features {
  list-style: none;
  text-align: left;
  margin: 2rem 0;
}

.features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.features li:last-child {
  border-bottom: none;
}

.select-package {
  background: var(--primary);
  color: var(--secondary);
  border: 2px solid var(--primary);
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  margin-top: 1rem;
}

.select-package:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1.1rem; }
  
  h2 { font-size: 2rem; }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, 
  .btn-secondary {
    width: 100%;
    max-width: 300px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}