/* Minimalist Hero Section Styles */
.hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0a0e17;

}

/* Typography */
.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
}

.thin-text {
  font-weight: 300;
  font-size: 3.5rem;
  opacity: 0.9;
}

.bold-text {
  font-weight: 800;
  font-size: 5rem;
  letter-spacing: -0.03em;
}

.gradient-text {
  background: linear-gradient(90deg, #88602D 0%, #DDBC93 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 4rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 90%;
  font-weight: 400;
}

/* CTA Buttons */
.hero-cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-hero {
  padding: 0.75rem 2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary.btn-hero {
  background: linear-gradient(90deg, #88602D 0%, #DDBC93 100%);
  border: none;
}

.btn-primary.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-light.btn-hero {
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
}

.btn-outline-light.btn-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Stats Cards */
.stats-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.stat-card:nth-child(3) {
  grid-column: span 2;
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(90deg, #88602D 0%, #DDBC93 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.stat-icon i {
  color: white;
  font-size: 1.5rem;
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Testimonial Card */
.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 1rem;
}

.quote-mark {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.1);
}

.testimonial-text {
  font-size: 1.125rem;
  color: white;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.author-name {
  font-weight: 600;
  color: white;
  margin-bottom: 0;
  font-size: 0.875rem;
}

.author-title {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  z-index: 10;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  position: relative;
  margin-bottom: 0.5rem;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-animation 2s infinite;
}

@keyframes scroll-animation {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(15px);
  }
}

.scroll-indicator p {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .thin-text {
    font-size: 2.8rem;
  }

  .bold-text {
    font-size: 4rem;
  }

  .gradient-text {
    font-size: 3.5rem;
  }
}

@media (max-width: 991.98px) {
  .hero-title {
    font-size: 3rem;
  }

  .thin-text {
    font-size: 2.4rem;
  }

  .bold-text {
    font-size: 3.2rem;
  }

  .gradient-text {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .stats-cards {
    margin-top: 3rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding-top: 6rem !important;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .thin-text {
    font-size: 2rem;
  }

  .bold-text {
    font-size: 2.8rem;
  }

  .gradient-text {
    font-size: 2.4rem;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-hero {
    width: 100%;
  }

  .stats-cards {
    grid-template-columns: 1fr;
  }

  .stat-card:nth-child(3) {
    grid-column: span 1;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .thin-text {
    font-size: 1.8rem;
  }

  .bold-text {
    font-size: 2.4rem;
  }

  .gradient-text {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 375px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .thin-text {
    font-size: 1.5rem;
  }

  .bold-text {
    font-size: 2rem;
  }

  .gradient-text {
    font-size: 1.7rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .stat-card {
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
  }

  .stat-icon i {
    font-size: 1.2rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }
}

@media (max-width: 375px) {
  .stats-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-cta-group .btn-hero {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 375px) {
  .testimonial-text {
    font-size: 1rem;
  }

  .author-image {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 375px) {
  .scroll-indicator {
    bottom: 1rem;
  }

  .mouse {
    width: 20px;
    height: 30px;
  }

  .scroll-indicator p {
    font-size: 0.7rem;
  }
}

/* Enhanced Membership Levels Section */
.membership-levels {
  background: linear-gradient(135deg, #ddbc93 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Add decorative elements */
.membership-levels::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.membership-levels::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(136, 96, 45, 0.05);
  z-index: 1;
}

.membership-container {
  position: relative;
  z-index: 2;
}

/* Membership Filter */
.membership-filter {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.filter-btn {
  background: transparent;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: #88602D;
}

/* Enhanced Membership Cards */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px;
}

.membership-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 254, 253, 0.5);
  border-radius: 24px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.membership-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.card-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at 50% 0%,
      rgba(221, 188, 147, 0.3) 0%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.membership-card:hover .card-glow {
  opacity: 1;
}

.level-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #88602D, #ddbc93);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 10px 20px rgba(136, 96, 45, 0.2);
}

.level-icon i {
  font-size: 28px;
  color: white;
}

.membership-card h3 {
  color: #333;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.price {
  color: #333;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.currency {
  font-size: 24px;
  vertical-align: super;
  margin-right: 5px;
  margin-top: 5px;
}

.period {
  font-size: 16px;
  opacity: 0.7;
  margin-left: 5px;
  align-self: flex-end;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex-grow: 1;
}

.features li {
  color: rgba(0, 0, 0, 0.8);
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.features li i {
  color: #88602D;
  font-size: 14px;
  margin-top: 4px;
}

.cta-button {
  background: linear-gradient(45deg, #88602D, #ddbc93);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-weight: 600;
  border: none;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 5px 15px rgba(136, 96, 45, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(136, 96, 45, 0.3);
  color: white;
}

.popular-tag {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(45deg, #88602D, #ddbc93);
  color: white;
  padding: 8px 40px;
  transform: rotate(45deg);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

/* Premium card styling */
.membership-card.premium {
  border: 2px solid rgba(221, 188, 147, 0.5);
  transform: scale(1.05);
  z-index: 5;
}

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

.membership-card.premium .level-icon {
  background: linear-gradient(45deg, #88602D, #ddbc93);
}

/* Membership Modal Styles */
.membership-modal-info {
  background: linear-gradient(135deg, #88602D 0%, #ddbc93 100%);
  color: white;
  border-radius: 10px 0 0 10px;
  padding: 2rem;
}

.selected-plan-details {
  text-align: center;
}

.selected-plan-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto;
}

.selected-plan-icon i {
  font-size: 35px;
  color: white;
}

.selected-plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1.5rem 0;
}

.selected-plan-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.selected-plan-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.selected-plan-features li i {
  color: white;
  font-size: 12px;
  margin-top: 4px;
}

#membershipForm .form-control,
#membershipForm .form-select {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  border: 1px solid #e0e0e0;
  background-color: #f8f9fa;
}

#membershipForm .form-control:focus,
#membershipForm .form-select:focus {
  border-color: #ddbc93;
  box-shadow: 0 0 0 0.25rem rgba(221, 188, 147, 0.25);
}

#membershipForm .form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #495057;
}

#membershipForm .btn-primary {
  background: linear-gradient(45deg, #88602D, #ddbc93);
  border: none;
  padding: 0.75rem;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(136, 96, 45, 0.2);
}

#membershipForm .btn-primary:hover {
  box-shadow: 0 6px 15px rgba(136, 96, 45, 0.3);
  transform: translateY(-2px);
}

/* Success Modal */
.success-icon {
  font-size: 5rem;
  color: #88602D;
}

/* Animation for cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.membership-card {
  animation: fadeInUp 0.6s ease forwards;
}

.membership-card:nth-child(2) {
  animation-delay: 0.2s;
}

.membership-card:nth-child(3) {
  animation-delay: 0.4s;
}

.membership-card:nth-child(4) {
  animation-delay: 0.6s;
}

.membership-card:nth-child(5) {
  animation-delay: 0.8s;
}

.membership-card:nth-child(6) {
  animation-delay: 1s;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .membership-grid {
    padding: 0;
  }

  .membership-card.premium {
    transform: scale(1);
  }

  .membership-card.premium:hover {
    transform: translateY(-10px);
  }

  .membership-levels {
    padding: 80px 0;
  }
}

@media (max-width: 767.98px) {
  .filter-buttons {
    padding: 5px;
  }

  .filter-btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }

  .membership-modal-info {
    border-radius: 10px 10px 0 0;
    padding: 1.5rem;
  }

  .selected-plan-features {
    margin: 1rem 0;
  }

  .selected-plan-price {
    font-size: 2rem;
    margin: 0.5rem 0;
  }

  .selected-plan-icon {
    width: 60px;
    height: 60px;
    margin: 1rem auto;
  }

  .selected-plan-icon i {
    font-size: 25px;
  }
}

@media (max-width: 575.98px) {
  .membership-grid {
    grid-template-columns: 1fr;
  }

  .filter-buttons {
    flex-wrap: wrap;
    border-radius: 15px;
  }

  .filter-btn {
    flex: 1 0 calc(50% - 10px);
    text-align: center;
    font-size: 0.85rem;
  }
}

/* Additional decorative elements */
.membership-levels .section-header {
  position: relative;
}

.membership-levels .section-header::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #88602D, #ddbc93);
  border-radius: 2px;
}

/* Add subtle animation to the CTA button */
.cta-button i {
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(5px);
}

/* Add a subtle shadow to the membership cards */
.membership-card {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Add a badge for new features */
.feature-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(136, 96, 45, 0.1);
  color: #88602D;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 5px;
  text-transform: uppercase;
}

/* Add a subtle animation to the filter buttons */
.filter-btn {
  position: relative;
  overflow: hidden;
}

.filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #88602D;
  transition: width 0.3s ease;
}

.filter-btn:hover::after,
.filter-btn.active::after {
  width: 80%;
}

/* Add a subtle animation to the membership section title */
@keyframes gradientText {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.membership-levels .title {
  background: linear-gradient(90deg, #88602D, #ddbc93, #88602D);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientText 5s ease infinite;
}

/* Enhanced Modal Styles */
.membership-modal-info {
  background: linear-gradient(135deg, #88602D 0%, #ddbc93 100%);
  color: white;
  border-radius: 10px 0 0 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.membership-modal-info::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  z-index: 0;
}

.selected-plan-details {
  position: relative;
  z-index: 1;
}

.selected-plan-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.selected-plan-icon i {
  font-size: 35px;
  color: white;
}

.selected-plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 1.5rem 0;
}

.selected-plan-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.selected-plan-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.selected-plan-features li i {
  color: white;
  font-size: 12px;
  margin-top: 4px;
}

/* Form Styles */
#membershipForm .form-control,
#membershipForm .form-select {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  border: 1px solid #e0e0e0;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}

#membershipForm .form-control:focus,
#membershipForm .form-select:focus {
  border-color: #ddbc93;
  box-shadow: 0 0 0 0.25rem rgba(221, 188, 147, 0.25);
  background-color: #fff;
}

#membershipForm .form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #495057;
}

#membershipForm .btn-primary {
  background: linear-gradient(45deg, #88602D, #ddbc93);
  border: none;
  padding: 0.75rem;
  font-weight: 600;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(136, 96, 45, 0.2);
  transition: all 0.3s ease;
}

#membershipForm .btn-primary:hover {
  box-shadow: 0 6px 15px rgba(136, 96, 45, 0.3);
  transform: translateY(-2px);
}

/* Form validation styles */
.form-control.is-invalid,
.form-select.is-invalid,
.form-check-input.is-invalid {
  border-color: #dc3545;
}

.form-control.is-invalid {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.form-control.is-invalid~.invalid-feedback,
.form-select.is-invalid~.invalid-feedback,
.form-check-input.is-invalid~.invalid-feedback {
  display: block;
}

/* Success Modal Styles */
.success-icon {
  font-size: 5rem;
  color: #88602D;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }

  70% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}

#successDetails {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
}

/* Loading spinner animation */
@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

.fa-spinner {
  animation: spinner 1s linear infinite;
}

/* Enhanced Filter Buttons */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin: 0 auto;
  max-width: 600px;
}

.filter-btn {
  background: transparent;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  color: #333;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.filter-btn.active,
.filter-btn:hover {
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: #88602D;
}

.filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #88602D;
  transition: width 0.3s ease;
}

.filter-btn:hover::after,
.filter-btn.active::after {
  width: 80%;
}


/* Responsive adjustments for the modal */
@media (max-width: 767.98px) {
  .membership-modal-info {
    border-radius: 10px 10px 0 0;
    padding: 1.5rem;
  }

  .modal-dialog {
    margin: 0.5rem;
  }

  .selected-plan-features {
    margin: 1rem 0;
  }

  .selected-plan-price {
    font-size: 2rem;
    margin: 0.5rem 0;
  }

  .selected-plan-icon {
    width: 60px;
    height: 60px;
    margin: 1rem auto;
  }

  .selected-plan-icon i {
    font-size: 25px;
  }
}

/* Application Process Styles */
.application-process {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.application-process::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(136, 96, 45, 0.05);
  z-index: 1;
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
}

.timeline-container {
  position: relative;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  height: 100%;
  width: 4px;
  background: linear-gradient(to bottom, #88602D 0%, #ddbc93 100%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 3rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: white;
  border: 4px solid #88602D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #88602D;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(136, 96, 45, 0.2);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(136, 96, 45, 0.3);
}

.timeline-content {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
  color: #333;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 1rem;
}

.timeline-details {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
}

.timeline-details ul {
  padding-left: 1.5rem;
  margin-bottom: 0;
}

.timeline-details li {
  padding: 0.25rem 0;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .timeline-content {
    padding: 1.25rem;
  }

  .timeline-details {
    padding: 0.75rem;
  }
}

@media (max-width: 575.98px) {
  .timeline-item {
    padding-left: 50px;
  }

  .timeline-container::before {
    left: 15px;
  }

  .timeline-icon {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .timeline-content h3 {
    font-size: 1.1rem;
  }

  .timeline-content {
    padding: 1rem;
  }

  .timeline-details {
    padding: 0.5rem;
  }

  .timeline-details ul {
    padding-left: 1.25rem;
  }
}

/* TERMS AND CONDITIONS */
.terms-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.terms-container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.terms-tabs {
  display: flex;
  min-height: 500px;
}

.nav-wrapper {
  width: 280px;
  background: #f8f9fa;
  padding: 2rem 0;
}

.nav-pills .nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 2rem;
  color: #495057;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  margin-bottom: 10px;
  /* Adds space between buttons */
}

.nav-pills .nav-link:last-child {
  margin-bottom: 0;
}

.nav-pills .nav-link i {
  font-size: 1.2rem;
  color: #ddbc93;
}

.nav-pills .nav-link.active {
  background: transparent;
  color: #ddbc93;
  border-left: 3px solid #ddbc93;
}

.tab-content {
  flex: 1;
  padding: 2rem;
}

.content-card {
  padding: 1rem;
}

.content-card h3 {
  color: #ddbc93;
  margin-bottom: 1.5rem;
}

.animated-list {
  list-style: none;
  padding: 0;
}

.animated-list li {
  padding: 1rem;
  margin-bottom: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  transform: translateX(-20px);
  opacity: 0;
  animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.tab-pane.active .animated-list li {
  animation-play-state: running;
}

.tab-pane.active .animated-list li:nth-child(1) {
  animation-delay: 0.1s;
}

.tab-pane.active .animated-list li:nth-child(2) {
  animation-delay: 0.2s;
}

.tab-pane.active .animated-list li:nth-child(3) {
  animation-delay: 0.3s;
}

.tab-pane.active .animated-list li:nth-child(4) {
  animation-delay: 0.4s;
}

@media (max-width: 768px) {
  .terms-tabs {
    flex-direction: column;
  }

  .nav-wrapper {
    width: 100%;
    padding: 1rem;
  }

  .nav-pills {
    display: flex;
    overflow-x: auto;
  }

  .nav-pills .nav-link {
    white-space: nowrap;
  }
}