:root{
  --wirlc-ink:#1f3544;
  --wirlc-ink-light:#365569;
  --wirlc-tab-pink:#d7b1b0;
  --wirlc-label-pink:#d3a9a7;
  --wirlc-gold:#c9a17f;
  --wirlc-muted:#ede0d5;
  --wirlc-white:#fff;
  --wirlc-accent:#D2A9A8;
}

/* Apply Intro Section */
.holder.apply-intro {
  padding: 40px 20px;
  background-color: #fff;
}

.holder.apply-intro .inner h2 {
  font-size: 36px;
  text-align: center;
  font-weight: 500;
  color: #000;
  margin-bottom: 30px;
}

.intro-content {
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
  font-size: 32px;
  line-height: 1.5;
}
.intro-content span {
  color: var(--wirlc-label-pink);
  font-weight: 500;
}

/* Tab Container */
.pricing-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.header-tabs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 0 20px;
  gap: 10px;
}

.tab {
  background: var(--wirlc-tab-pink);
  color: var(--wirlc-white);
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  flex: 1;
  height: 80px;
  text-transform: uppercase;
  line-height: 1.2;
  font-size: 20px;
  font-family: 'Gotham A', 'Gotham B', helvetica, arial, sans-serif;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.tab:hover {
  background: var(--wirlc-ink-light);
}

.tab.is-active {
  background: var(--wirlc-ink);
  color: var(--wirlc-white);
}

/* Dark Background Section */
.holder.dark-background {
  background: var(--wirlc-ink);
  padding: 60px 0;
}

/* Membership Cards */
.membership-cards {
  display: block;
  padding: 0 20px;
  color: var(--wirlc-white);
  overflow: visible;
}

.card-wrapper {
  width: 100%;
  max-width: 100%;
  background: var(--wirlc-white);
  color: var(--wirlc-ink);
  position: relative;
  margin: 0 auto;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  display: block;
}

.membership-card {
  padding: 0;
}

.card-content {
  display: flex;
  align-items: stretch;
}

.content-left {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.content-right {
  /* flex: 0 0 400px; */
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.content-right img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 407px;
}

.card-title {
  font-size: 28px;
  font-weight: bold;
  color: var(--wirlc-ink);
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: 'Gotham A', 'Gotham B', helvetica, arial, sans-serif;
}

.content-left .price {
  font-size: 48px;
  line-height: 1;
  color: var(--wirlc-gold);
  font-family: 'Gotham A', 'Gotham B', helvetica, arial, sans-serif;
  letter-spacing: -2px;
  font-weight: 600;
  margin-bottom: 5px;
}

.content-left .membership-type {
  font-size: 18px;
  color: #666;
  font-family: 'Gotham A', 'Gotham B', helvetica, arial, sans-serif;
  font-weight: 500;
  margin-bottom: 30px;
  text-transform: lowercase;
}

.benefits-section p {
  font-size: 24px;
  line-height: 1.5;
  color: #000;
  font-family: 'Gotham A', 'Gotham B', helvetica, arial, sans-serif;
  margin-bottom: 20px;
}

.benefits-section h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--wirlc-ink);
  margin-bottom: 15px;
  font-family: 'Gotham A', 'Gotham B', helvetica, arial, sans-serif;
}

.content-left .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  text-align: left;
}

.content-left .benefits-list li {
  padding: 5px 0;
  padding-left: 25px;
  position: relative;
  font-size: 18px;
  line-height: 1.6;
  color: #000;
}

.content-left .benefits-list li a {
  color: var(--wirlc-label-pink);
  text-decoration: underline;
  font-weight: 500;
}

.content-left .benefits-list li:before {
  content: "•";
  position: absolute;
  left: 3px;
  color: var(--wirlc-accent);
  font-size: 20px;
  line-height: 1;
  top: 9px;
}

.content-left .register-btn {
  background: var(--wirlc-ink);
  color: var(--wirlc-white);
  border: none;
  padding: 7px 20px;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Gotham A', 'Gotham B', helvetica, arial, sans-serif;
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  transition: background 0.3s ease;
  align-self: flex-start;
  margin-top: auto;
}

.content-left .register-btn:hover {
  background: var(--wirlc-accent);
  color: var(--wirlc-white);
}

/* Membership Footer */
.membership-cards {
  position: relative;
}

.membership-footer {
  position: relative;
  max-width: 100%;
  margin: 30px auto 0;
  padding: 0 20px;
  text-align: center;
  clear: both;
}

.membership-footer p {
  font-size: 24px;
  color: #fff;
  font-family: 'Gotham A', 'Gotham B', helvetica, arial, sans-serif;
  margin: 0;
  line-height: 1.5;
}

.membership-footer a {
  color: var(--wirlc-accent);
  text-decoration: underline;
}

.membership-footer a:hover {
  color: var(--wirlc-white);
}

/* Testimonial Section */
.testimonial-section {
  padding: 80px 40px;
  background-color: #EAF6F9;
}

.testimonial-section .inner {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-section .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  color: var(--wirlc-ink);
  margin-bottom: 60px;
  text-transform: uppercase;
  font-family: 'Gotham A', 'Gotham B', helvetica, arial, sans-serif;
}

.testimonial-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 100%;
  margin: 0 auto;
}

.testimonial-image {
  flex: 0 0 150px;
}

.testimonial-image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-quote {
  flex: 1;
}

.testimonial-quote blockquote {
  margin: 0 0 25px 0;
  padding: 0;
  border: none;
}

.testimonial-quote blockquote p {
  font-size: 20px;
  line-height: 1.4;
  color: #000;
  font-size: 32px;
  margin: 0;
  font-family: 'Gotham A', 'Gotham B', helvetica, arial, sans-serif;
  padding-bottom: 0;
}

.testimonial-quote blockquote p strong {
  color: var(--wirlc-label-pink);
  font-weight: 500;
}

.testimonial-author {
  font-family: 'Gotham A', 'Gotham B', helvetica, arial, sans-serif;
}

.testimonial-author .author-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--wirlc-ink);
  margin-bottom: 5px;
}

.testimonial-author .author-name-and-company {
  font-size: 16px;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-style: italic;
}

.testimonial-author .author-title {
  font-size: 16px;
  color: #666;
  margin-bottom: 3px;
}

.testimonial-author .author-company {
  font-size: 16px;
  color: #666;
}

/* Partners Section Customization */
.holder.partners {
  background-color: white;
  padding: 60px 40px;
}

.holder.partners h3 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--wirlc-ink);
}

.holder.partners .button.view-all {
  display: inline-block;
  margin-top: 40px;
  background: #000;
  color: white;
  padding: 7px 20px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  transition: background 0.3s ease;
  font-size: 12px;
}

.holder.partners .button.view-all:hover {
  background: var(--wirlc-ink);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .header-tabs {
    flex-wrap: wrap;
  }

  .tab {
    font-size: 2vw;
  }
  
}

@media (max-width: 768px) {
  .pricing-container {
    position: relative;
  }
  
  /* Gradient overlays to indicate scrollable content - only show when needed */
  .pricing-container:before,
  .pricing-container:after {
    content: '';
    position: absolute;
    top: 20px;
    height: 60px;
    width: 40px;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .pricing-container:before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  }
  
  .pricing-container:after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  }
  
  /* Show gradients when scrolling is possible */
  .pricing-container.can-scroll-left:before {
    opacity: 1;
  }
  
  .pricing-container.can-scroll-right:after {
    opacity: 1;
  }
  
  .header-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 5px;
    padding: 20px 10px 0 10px;
    position: relative;
  }
  
  /* Hide scrollbar for cleaner look */
  .header-tabs::-webkit-scrollbar {
    height: 3px;
  }
  
  .header-tabs::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .header-tabs::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
    border-radius: 3px;
  }
  
  .tab {
    width: 90px;
    height: 60px;
    font-size: 12px;
    margin: 0 5px 0 0;
    padding: 8px 12px;
    line-height: 1.2;
  }
  
  .tab:first-child {
    margin-left: 0;
  }
  
  .tab:last-child {
    margin-right: 0;
  }

  .card-content {
    flex-direction: column;
    min-height: auto;
  }

  .owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
    width: 20px;
  }

  .content-left {
    padding: 20px 30px 0 30px;
    order: 1;  /* Ensure content-left comes first */
  }

  .content-right {
    flex: 1;
    height: 300px;
    order: 2;  /* Ensure content-right comes second */
  }

  .card-title {
    font-size: 24px;
  }

  .content-left .price {
    font-size: 40px;
  }

  .content-left .membership-type {
    font-size: 16px;
  }

  .content-left .benefits-list li {
    font-size: 14px;
  }

  .content-left .register-btn {
    padding: 12px 40px;
    align-self: center;
    width: auto;
    text-align: center;
  }

  .testimonial-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0;
  }

  .testimonial-image {
    flex: 0 0 120px;
  }

  .testimonial-image img {
    width: 120px;
    height: 120px;
  }

  .testimonial-quote blockquote p {
    font-size: 18px;
    text-align: center;
  }

  .testimonial-author {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .benefits-section p {
    font-size: 16px;
  }
  .holder.apply-intro .inner h2 {
    font-size: 28px;
  }

  .membership-footer p {
    font-size: 18px;
  }

  .holder.dark-background {
    padding-top:20px;
  }
  
  /* Adjust gradient overlay height for smaller screens */
  .pricing-container:before,
  .pricing-container:after {
    height: 50px;
    width: 30px;
  }
  
  .tab {
    font-size: 10px;
    width: 130px;
    height: 50px;
    padding: 6px 10px;
  }

  .intro-content {
    font-size: 16px;
  }

  .content-left {
    padding: 20px 20px 0 20px;
    order: 1;  /* Ensure content-left comes first */
  }
  
  .content-right {
    order: 2;  /* Ensure content-right comes second */
  }

  .content-left .register-btn {
    width: auto;
  }

  .card-title {
    font-size: 20px;
  }

  .content-left .price {
    font-size: 32px;
  }

  .content-left .membership-type {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .benefits-section h4 {
    font-size: 16px;
  }

  .content-left .benefits-list li {
    font-size: 13px;
  }

  .content-left .register-btn {
    padding: 10px 30px;
    font-size: 14px;
  }

  .testimonial-section .section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .testimonial-content {
    max-width: 100%;
  }

  .testimonial-image {
    flex: 0 0 100px;
  }

  .testimonial-image img {
    width: 100px;
    height: 100px;
  }

  .testimonial-quote blockquote p {
    font-size: 16px;
  }

  .testimonial-author .author-name {
    font-size: 18px;
  }

  .testimonial-author .author-title,
  .testimonial-author .author-company {
    font-size: 14px;
  }

  .testimonial-quote cite strong {
    font-size: 18px;
  }

  .testimonial-quote cite {
    font-size: 14px;
  }
}



