/* ========================================
   PACKAGES PAGE STYLES
   ======================================== */

/* HERO SECTION */
.packages-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://pub-909aa0f27a364a9d8f6d7b2dd8e02feb.r2.dev/Image/Package BG.jpeg') center center / cover no-repeat;
  position: relative;
  padding: 120px 0 80px;
}

.packages-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 13, 13, 0.7) 0%, rgba(13, 13, 13, 0.5) 100%);
}

.packages-hero-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.packages-hero-copy h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.packages-hero-copy p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* PRICING SECTION */
.pricing-section {
  padding: 80px 0;
  background: #0d0d0d;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

/* PRICING CARD */
.pricing-card {
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Featured Card (Standard) */
.pricing-card.featured {
  background: linear-gradient(180deg, #1f1f2e 0%, #151520 100%);
  border-color: #ff9500;
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.featured-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff9500 0%, #ff6b00 100%);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  border-radius: 20px;
}

/* Premium Card */
.pricing-card.premium {
  background: linear-gradient(180deg, #1a1520 0%, #0f0a15 100%);
  border-color: #8b5cf6;
}

/* Pricing Header */
.pricing-header {
  text-align: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #2a2a2a;
  margin-bottom: 30px;
}

.pricing-badge {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #888;
  margin-bottom: 15px;
}

.pricing-card.featured .pricing-badge {
  color: #ff9500;
}

.pricing-card.premium .pricing-badge {
  color: #8b5cf6;
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

.pricing-price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-top: 10px;
}

.pricing-price .amount {
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.pricing-tagline {
  color: #888;
  font-size: 0.95rem;
}

/* Pricing Body */
.pricing-body {
  flex: 1;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: #ccc;
  font-size: 0.95rem;
  border-bottom: 1px solid #1a1a1a;
}

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

.pricing-features .check {
  color: #22c55e;
  font-weight: bold;
  flex-shrink: 0;
}

.pricing-features .x {
  color: #666;
  font-weight: bold;
  flex-shrink: 0;
}

.pricing-features li.disabled {
  color: #555;
}

/* Ideal For */
.pricing-ideal {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 20px;
  margin-top: auto;
}

.pricing-ideal strong {
  color: #fff;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 8px;
}

.pricing-ideal p {
  color: #888;
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

/* Pricing Footer */
.pricing-footer {
  margin-top: 30px;
}

.pricing-btn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: #2a2a2a;
  color: #fff;
  border: 1px solid #3a3a3a;
}

.pricing-btn:hover {
  background: #3a3a3a;
  transform: translateY(-2px);
}

.pricing-card.featured .pricing-btn {
  background: linear-gradient(135deg, #ff9500 0%, #ff6b00 100%);
  color: #000;
  border: none;
}

.pricing-card.featured .pricing-btn:hover {
  box-shadow: 0 10px 30px rgba(255, 149, 0, 0.3);
}

.pricing-card.premium .pricing-btn {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: #fff;
  border: none;
}

.pricing-card.premium .pricing-btn:hover {
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

/* SERVICES OVERVIEW */
.services-overview {
  padding: 80px 0;
  background: #0a0a0a;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-box {
  background: #151515;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-box:hover {
  border-color: #ff9500;
  transform: translateY(-5px);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.service-box h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-box p {
  color: #888;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* PROCESS SECTION */
.process-section {
  padding: 80px 0;
  background: #0d0d0d;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: '→';
  position: absolute;
  right: -25px;
  top: 30px;
  font-size: 1.5rem;
  color: #ff9500;
}

.process-step:last-child::after {
  display: none;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff9500 0%, #ff6b00 100%);
  color: #000;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
}

.process-step h3 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-step p {
  color: #888;
  font-size: 0.9rem;
}

/* CUSTOM QUOTE */
.custom-quote {
  padding: 80px 0;
  background: #0a0a0a;
}

.quote-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  border: 1px solid #2a2a4a;
}

.quote-card h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.quote-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ STYLES (reuse from Services) */
.faqs {
  padding: 80px 0;
  background: #0d0d0d;
}

.faq-head h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 50px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  margin-bottom: 16px;
  background: #111;
}

.faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
}

.faq-toggle:hover {
  color: #ff9500;
}

.faq-icon {
  font-size: 1.5rem;
  color: #ff9500;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-body {
  max-height: 200px;
}

.faq-body p {
  color: #888;
  line-height: 1.7;
  padding: 0 30px 25px 30px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .pricing-card.featured {
    transform: none;
    order: -1;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-step::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .packages-hero {
    padding: 100px 0 60px;
    min-height: 40vh;
  }

  .packages-hero-copy h1 {
    font-size: 2rem;
  }

  .packages-hero-copy p {
    font-size: 1rem;
  }

  .pricing-section {
    padding: 60px 0;
  }

  .pricing-card {
    padding: 30px 20px;
  }

  .pricing-price .amount {
    font-size: 3rem;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .quote-card {
    padding: 40px 20px;
  }

  .quote-card h2 {
    font-size: 1.5rem;
  }
}

/* Mobile Logo (from other pages) */
.packages-page .mobile-logo {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.packages-page .mobile-logo img {
  height: 30px;
  width: auto;
}

@media (min-width: 769px) {
  .packages-page .mobile-logo {
    display: none;
  }
}
