/* Club Operations Page Styles */
.club-operations-page {
  min-height: 100vh;
  background-color: #f9fafb;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.btn-primary {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: black;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: scale(1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(245, 158, 11, 0.25);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: white;
  color: #374151;
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background-color: #ffffff;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-title {
  color: #111827;
  margin-bottom: 1.5rem;
}

.features-subtitle {
  font-size: 2.3rem;
  color: #4b5563;
  max-width: 800px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.feature-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-0.5rem);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon-blue {
  background: linear-gradient(135deg, #FFD700 0%, #B88A00 100%);
}

.feature-icon-green {
  background: linear-gradient(135deg, #FFE8A3 0%, #B88A00 100%);
}

.feature-icon-purple {
  background: linear-gradient(135deg, #F5D26D 0%, #FCCA4A 100%);
}

.feature-icon-indigo {
  background: linear-gradient(135deg, #FFE8A3 0%, #FCCA4A 100%);
}

.feature-icon-orange {
  background: linear-gradient(135deg, #F5D26D 0%, #FCCA4A 100%);
}

.feature-icon-pink {
  background: linear-gradient(135deg, #FCCA4A 0%, #F4A300 100%);
}

.feature-svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.feature-title {
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.feature-description {
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-link {
  color: #2878B6;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

.feature-link:hover {
  color: #b45309;
}

.link-arrow {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
}

/* Benefits Section */
.benefits-section {
  padding: 6rem 0;
  background: #ffFcF4;
}

.benefits-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.benefits-title {
  font-weight: bold;
  color: #111827;
  margin-bottom: 2rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
}

.benefit-check {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.benefit-check-green {
  background-color: #2878B6;
}

.benefit-check-blue {
  background-color: #3b82f6;
}

.benefit-check-purple {
  background-color: #2878B6;
}

.benefit-check-indigo {
  background-color: #3b82f6;
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: white;
}

.benefit-title {
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.benefit-description {
  color: #4b5563;
}

.benefits-visual {
  order: 2;
}

@media (min-width: 1024px) {
  .benefits-visual {
    order: 0;
  }
}

.benefits-image {
max-width:500px;
}

.benefit-image {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Related Products */
.related-section {
  padding: 6rem 0;
  background-color: #ffffff;
}

.related-header {
  text-align: center;
  margin-bottom: 4rem;
}

.related-title {
  font-weight: bold;
  color: #111827;
  margin-bottom: 1.5rem;
}

.related-subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 48rem;
  margin: 0 auto;
}

.related-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.related-card {
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.related-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-0.25rem);
}

.related-card-light {
  background: #f1f1f1;
}

.related-icon-buzYellow1 {
  background: linear-gradient(135deg, #225E8E 0%, #56A1D6 100%);
}

.related-icon-buzYellow2 {
  background: linear-gradient(135deg, #2878B6 0%, #6AC2DB 100%);
}

.related-icon-buzYellow3 {
  background: linear-gradient(135deg, #2F6FA3 0%, #A7D4F2 100%);
}

.related-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
}

.related-icon-green {
  background-color: #10b981;
}

.related-icon-blue {
  background-color: #3b82f6;
}

.related-icon-purple {
  background-color: #8b5cf6;
}

.related-svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.related-product-title {
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.related-description {
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.related-link {
  text-decoration: none;
  font-weight: 600;
}

.related-link-green {
  color: #059669;
}

.related-link-blue {
  color: #2563eb;
}

.related-link-purple {
  color: #7c3aed;
}

.related-link:hover {
  opacity: 0.8;
}

/* Testimonial */
.testimonial-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f9fafb 0%, #dbeafe 100%);
}

.testimonial-container {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.testimonial-icon {
  width: 4rem;
  height: 4rem;
  background-color: #f59e0b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
}

.testimonial-svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.testimonial-quote {
  font-size: 1.5rem;
  color: #374151;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.author-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1.5rem;
}

.author-info {
  text-align: left;
}

.author-name {
  font-weight: 600;
  color: #111827;
  font-size: 1.125rem;
}

.author-role {
  color: #4b5563;
}

.author-company {
  color: #d97706;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, #1e293b 0%, #1e40af 100%);
  padding: 5rem 0;
}

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

.cta-title {
  font-weight: bold;
  color: white;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 3rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.btn-cta-primary {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: black;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: scale(1);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-cta-primary:hover {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  transform: scale(1.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-cta-secondary {
  background-color: transparent;
  border: 2px solid white;
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background-color: white;
  color: #374151;
}     