/* Cheapest Umrah Packages - Modern Budget Hero Design */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Budget Hero Section */
.budget-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0f4c75 0%, #3282b8 50%, #bbe1fa 100%);
}

.budget-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://wallpapers.com/images/featured/kaaba-a2wif1x8on9qihxv.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.budget-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(15, 76, 117, 0.9) 0%, 
    rgba(50, 130, 184, 0.8) 50%, 
    rgba(187, 225, 250, 0.7) 100%);
  z-index: 2;
}

.budget-hero-container {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: center;
}

/* Hero Content */
.budget-hero-content {
  color: white;
}

.budget-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}

.badge-icon {
  font-size: 16px;
}

.budget-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.budget-highlight {
  display: block;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.budget-hero-desc {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 32px;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Budget Stats */
.budget-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.budget-stat {
  text-align: center;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #ffd700;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 4px;
}

/* CTA Buttons */
.budget-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.budget-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.budget-btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.budget-btn-alt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.budget-btn-alt:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(4px);
}

/* Guarantees */
.budget-guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  animation: fadeInUp 0.8s ease-out 1s both;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.guarantee-icon {
  width: 20px;
  height: 20px;
  background: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: bold;
}

/* Price Card */
.budget-hero-visual {
  animation: fadeInRight 1s ease-out 0.5s both;
}

.price-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #f7931e, #ffd700);
}

.price-header {
  text-align: center;
  margin-bottom: 24px;
}

.price-badge {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 16px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.currency {
  font-size: 1.5rem;
  color: #666;
  font-weight: 600;
}

.amount {
  font-size: 3rem;
  font-weight: 800;
  color: #0f4c75;
  line-height: 1;
}

.price-features {
  margin-bottom: 24px;
}

.price-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: #333;
  font-weight: 500;
}

.price-feature::before {
  content: '✓';
  color: #4caf50;
  font-weight: bold;
}

.price-cta {
  text-align: center;
}

.price-btn {
  width: 100%;
  background: linear-gradient(45deg, #0f4c75, #3282b8);
  color: white;
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.price-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15, 76, 117, 0.4);
}

/* 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);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .budget-hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .budget-hero-visual {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .budget-hero {
    min-height: 90vh;
    padding: 60px 0;
  }
  
  .budget-hero-container {
    padding: 0 16px;
  }
  
  .budget-stats {
    justify-content: center;
    gap: 24px;
  }
  
  .budget-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .budget-btn-main,
  .budget-btn-alt {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .budget-guarantees {
    justify-content: center;
  }
  
  .price-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .budget-hero-title {
    font-size: 2rem;
  }
  
  .budget-hero-desc {
    font-size: 1rem;
  }
  
  .budget-stats {
    gap: 16px;
  }
  
  .stat-value {
    font-size: 1.5rem;
  }
  
  .amount {
    font-size: 2.5rem;
  }
}

/* Content Sections */
.content-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.content-section:nth-child(even) {
  background: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f4c75;
  margin-bottom: 24px;
  text-align: center;
}

.content-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* Feature Lists */
.features-list {
  display: grid;
  gap: 16px;
  margin: 32px 0;
}

.feature-item {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #ff6b35;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Package Grid */
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin: 40px 0;
}

.package-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

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

.package-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f4c75;
  margin-bottom: 16px;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: #ff6b35;
  margin-bottom: 16px;
}

.package-card ul {
  list-style: none;
  margin: 20px 0;
}

.package-card li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.package-card li:before {
  content: '✓';
  color: #4caf50;
  font-weight: bold;
  margin-right: 8px;
}

/* FAQ Section */
.faq-section {
  background: #f8f9fa;
  padding: 80px 0;
}

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

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff6b35;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 24px 24px;
  max-height: 200px;
}

.faq-answer p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #0f4c75, #3282b8);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 32px 0;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.btn-outline {
  background: transparent;
  color: white;
  padding: 16px 32px;
  border: 2px solid white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: white;
  color: #0f4c75;
}

.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 1rem;
  opacity: 0.9;
}