/* Packages Page Specific Styles */

/* Hero Section */
.packages-hero {
  background: linear-gradient(135deg, var(--gunmetal) 0%, #2d1810 50%, #3d2415 100%);
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 100px 0 80px;
  overflow: visible;
}

.packages-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(247, 189, 18, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.packages-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 40px 20px;
}

/* Google Reviews Badge */
.packages-hero .google-reviews {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 30px;
  font-size: 14px;
  color: white;
}

.packages-hero .stars {
  color: var(--brand-yellow);
  font-size: 16px;
}

.packages-hero h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 0.9;
  margin: 20px 0 30px;
  color: white;
  text-transform: uppercase;
}

/* Yellow text styling */
.packages-hero .yellow-text {
  color: var(--brand-yellow);
}

.packages-hero .subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Package Selection */
.package-selection {
  padding: 80px 0;
  background: var(--ink);
}

.package-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.tab-btn {
  background: transparent;
  border: 2px solid var(--line);
  color: var(--muted);
  padding: 12px 30px;
  border-radius: var(--r);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.tab-btn.active,
.tab-btn:hover {
  background: white;
  color: var(--ink);
  border-color: white;
}

.package-selection h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  text-align: center;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 60px;
}

/* Packages Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.package-card {
  background: var(--gunmetal);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  padding: 30px 25px;
  position: relative;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  min-height: 700px;
}

.package-card:hover {
  border-color: var(--brand-yellow);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.package-card.featured {
  border-color: var(--brand-yellow);
  transform: none;
}

.package-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--brand-yellow);
  color: var(--ink);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.package-header {
  margin-bottom: 25px;
}

.package-header h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-yellow);
  margin-bottom: 0;
  text-transform: uppercase;
  line-height: 1.2;
}

.package-features {
  flex: 1;
  margin-bottom: 30px;
}

.feature {
  color: var(--muted);
  margin-bottom: 12px;
  font-size: 13px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.feature::before {
  content: '✓';
  color: var(--brand-yellow);
  font-weight: bold;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.package-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-yellow);
}

.amount {
  font-size: 3rem;
  font-weight: 900;
  color: white;
}

.period {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.package-setup {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 30px;
  line-height: 1.4;
}

.package-btn {
  width: 100%;
  background: var(--brand-yellow);
  color: var(--ink);
  border: none;
  padding: 16px 30px;
  border-radius: var(--r);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.package-btn:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(247, 189, 18, 0.3);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: var(--offwhite);
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.1;
}

.faq-header p {
  color: var(--gunmetal);
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 16px;
}

.ask-btn {
  background: var(--ink);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: var(--r);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ask-btn:hover {
  background: var(--gunmetal);
  transform: translateY(-2px);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid #e5e5e5;
  background: white;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f8f8f8;
}

.faq-toggle {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 20px 20px;
  color: var(--gunmetal);
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.packages-cta {
  padding: 80px 0;
  background: var(--ink);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-avatars {
  display: flex;
  justify-content: center;
  gap: -10px;
  margin-bottom: 30px;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gunmetal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 -5px;
  border: 3px solid var(--ink);
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.packages-cta h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.1;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-btn {
  background: var(--brand-yellow);
  color: var(--ink);
  border: none;
  padding: 18px 40px;
  border-radius: var(--r);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.cta-btn:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(247, 189, 18, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .packages-hero {
    min-height: 60vh;
    padding: 80px 0 60px;
  }
  
  .packages-hero-content {
    padding: 20px 15px;
  }
  
  .packages-hero .google-reviews {
    font-size: 12px;
    padding: 6px 16px;
  }
  
  .packages-hero h1 {
    margin: 15px 0 25px;
  }
  
  .package-tabs {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .tab-btn {
    width: 250px;
    text-align: center;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .package-card {
    min-height: auto;
    padding: 25px 20px;
  }
  
  .package-card.featured {
    transform: none;
  }
  
  .package-badge {
    top: -10px;
    right: 15px;
    padding: 4px 12px;
    font-size: 10px;
  }
  
  .package-header h3 {
    font-size: 1.5rem;
  }
  
  .faq-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cta-avatars {
    gap: 10px;
  }
  
  .avatar {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin: 0;
  }
  
  .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
