/* Import FontAwesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Container */
.partner-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 35px;
}

/* Main Content Area */
.partner-detail-main {
  background: white;
  padding: 48px 0 64px;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

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

/* Main Content Column */
.main-column {
  min-width: 0;
  order: 1; /* Main content position on desktop */
}

.content-section {
  margin-bottom: 48px;
  padding: 32px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.content-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #202020;
  margin: 0 0 24px 0;
}

.section-intro {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 32px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.see-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #4172dc;
  text-decoration: none;
  font-weight: 500;
}

.see-more-link:hover {
  color: #3e60c9;
  text-decoration: none;
}

.see-more-link i {
  font-size: 12px;
}

.pricing-legal-text {
  font-size: 10px;
  color: #6b7280;
  line-height: 1.5;
  margin-top: 24px;
}

.section-content {
  font-size: 16px;
  color: #667085;
  line-height: 1.7;
}

.section-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #202020;
  margin: 32px 0 16px 0;
}

.section-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #202020;
  margin: 24px 0 12px 0;
}

.section-content p {
  margin-bottom: 16px;
}

.section-content ul,
.section-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.section-content li {
  margin-bottom: 8px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

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

.feature-item {
  display: flex;
  gap: 16px;
  align-items: start;
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border-radius: 8px;
  color: #4172dc;
  font-size: 20px;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  color: #202020;
  margin: 0 0 8px 0;
}

.feature-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Gallery Slider */
.gallery-slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
	padding: 16px;
}

.gallery-slider {
  display: flex;
  transition: transform 0.4s ease-in-out;
  gap: 0;
}

.gallery-item {
  flex: 0 0 100%;
  overflow: hidden;
  background: white;
}

.gallery-image {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-caption {
  padding: 24px 0 0;
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  background: white;
  text-align: center;
  font-style: italic;
}

/* Gallery Navigation */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gallery-nav:hover {
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.gallery-nav i {
  color: #667085;
  font-size: 16px;
}

  .gallery-prev {
    left: 16px;
  }
  
  .gallery-next {
    right: 16px;
  }
}

.gallery-nav.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.gallery-nav.hidden {
  display: none;
}

/* Pricing Header */
.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.pricing-header .section-title {
  margin-bottom: 0; 
}

@media (max-width: 640px) {
  .pricing-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .pricing-header .section-title {
    margin-bottom: 0;
  }
}

/* Pricing Slider */
.pricing-slider-wrapper {
  position: relative;
  overflow: visible;
  margin: 0 auto;
  padding-top: 16px;
}

.pricing-slider {
  display: flex;
  transition: transform 0.4s ease-in-out;
  gap: 32px;
  overflow: visible;
}

.pricing-card {
  flex: 0 0 calc(50% - 12px);
  min-width: 0;
	max-width: 325px;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.2s;
	margin: 0 auto;
}

@media (max-width: 767px) {
  .pricing-slider-wrapper {
    margin: 0 auto;
  }
  
  .pricing-card {
    flex: 0 0 100%;
  }
}

.pricing-card:hover {
  border-color: #4172dc;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.plan-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: #4172dc;
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plan-name {
  font-size: 24px;
  font-weight: 700;
  color: #202020;
  margin: 0 0 8px 0;
}

.plan-price {
  font-size: 32px;
  font-weight: 700;
  color: #4172dc;
  margin-bottom: 16px;
}

.plan-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 24px;
}

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

.plan-features ul {
	padding-left: 0px;
}

.plan-features li {
  padding: 0 0 8px;
  font-size: 14px;
  color: #667085;
  display: flex;
  align-items: start;
  gap: 8px;
}

.plan-features li:before {
  content: "✔";
  color: #21c088;
  font-weight: 700;
  flex-shrink: 0;
}

.btn-plan {
  margin-top: auto;
}

/* Pricing Navigation */
.pricing-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-nav:hover {
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.pricing-nav i {
  color: #667085;
  font-size: 16px;
}

.pricing-prev {
  left: -10px;
}

.pricing-next {
  right: -10px;
}

@media (max-width: 767px) {
  .pricing-prev {
    left: -10px;
  }
  
  .pricing-next {
    right: -10px;
  }
}

.pricing-nav.disabled,
.pricing-nav.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Reviews Section */
.reviews-section {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Reviews Title Row */
.reviews-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.reviews-title-row .section-title {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .reviews-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.reviews-header {
  display: flex;
  gap: 48px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e5e7eb;
}

@media (max-width: 767px) {
  .reviews-header {
    flex-direction: column;
    gap: 24px;
  }
}

.reviews-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-logo img {
  max-width: 250px;
  max-height: 125px;
  object-fit: contain;
}

.reviews-rating-block {
  flex: 0 0 auto;
}

.reviews-rating-label {
  font-size: 14px;
  font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.05em;
  color: #6b7280;
  margin-bottom: 8px;
}

.reviews-rating-number {
  font-size: 48px;
  font-weight: 700;
  color: #4172dc;
  line-height: 1;
  margin-bottom: 8px;
}

.reviews-rating-text {
  font-size: 14px;
  color: #6b7280;
}

.reviews-total-block {
  flex: 0 0 auto;
}

.reviews-total-number {
  font-size: 48px;
  font-weight: 700;
  color: #202020;
  line-height: 1;
  margin-bottom: 8px;
}

.reviews-total-text {
  font-size: 14px;
  color: #6b7280;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.review-item {
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.review-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.review-stars,
.reviews-rating-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.review-stars i,
.reviews-rating-stars i{
  color: #ffd700;
  font-size: 18px;
}

.review-stars i.empty,
.reviews-rating-stars i.empty {
  color: #d1d5db;
}

.review-title {
  font-size: 18px;
  font-weight: 600;
  color: #202020;
  margin: 0 0 8px 0;
}

.review-text {
  font-size: 14px;
  color: #667085;
  line-height: 1.6;
  margin: 0 0 12px 0;
}

.reviewer-name {
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: #667085;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.reviews-see-all {
  margin-top: 24px;
  text-align: left;
	color: #4172dc;
}

.reviews-see-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #4172dc;
  text-decoration: none;
  font-weight: 500;
}

.reviews-see-all-link:hover,
.reviews-see-all-link i:hover {
  color: #3e60c9;
  text-decoration: none;
}

.reviews-see-all-link i {
  font-size: 12px;
	color: #4172dc;
}

/* Bottom CTA Section - Tabs */
.bottom-cta-section {
  background: linear-gradient(to bottom left, #3c6fdc, #3341a5);
  border: 0px solid #e5e7eb;
  border-radius: 12px;
  padding: 32px;
  margin-top: 48px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.bottom-cta-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 24px 0;
}

.cta-tabs {
  display: flex;
  gap: 16px;
  border-bottom: 2px solid #ffffff1a;
  margin-bottom: 16px;
}

.cta-tab {
  padding: 0 24px 12px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff8a;
  background: none;
  border: none;
  border-bottom: 4px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: -3px;
}

.cta-tab:hover {
  color: #ffffff;
}

.cta-tab.active {
  color: #ffffff;
  border-bottom-color: #4172dc;
}

.cta-tab-content {
  display: none;
}

.cta-tab-content.active {
  display: block;
	padding: 0 16px 16px;
}

.cta-support-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 4px;
}

@media (min-width: 768px) {
  .cta-support-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
		column-gap: 32px;
    max-width: 400px;
  }
}

.cta-support-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #ffffff9a;
  text-decoration: none;
  font-weight: 500;
}

.cta-support-link:hover {
  color: #ffffff;
  text-decoration: none;
}

.cta-support-link i {
  font-size: 15px;
  width: 18px;
  text-align: center;
	margin-top: 2px;
}

.cta-legal-content {
  font-size: 14px;
  color: #ffffff9a;
  line-height: 1.7;
}

.cta-legal-content a {
  color: #ffffff;
  text-decoration: none;
}

.cta-legal-content a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.cta-legal-content a i {
  font-size: 12px;
  margin-left: 4px;
}

/* Sidebar Column */
.sidebar-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  order: 2; /* Sidebar position on desktop */
}

@media (min-width: 1024px) {
  .sidebar-column {
    position: sticky;
    top: 32px;
    align-self: start;
    overflow-y: auto;
  }
}

.sidebar-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 24px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.sidebar-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #202020;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
}

/* Quick Info List */
.quick-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quick-info-header {
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.quick-info-label {
  font-size: 12px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-bottom: 24px;
}

.quick-info-description {
  font-size: 14px;
  color: #667085;
  line-height: 1.5;
  padding-bottom: 32px; 
  margin-bottom: 24px; 
  border-bottom: 1px solid #e5e7eb;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-size: 12px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.info-value {
  font-size: 14px;
  color: #202020;
  font-weight: 500;
}

.info-link {
  font-size: 14px;
  color: #4172dc;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
	padding-bottom: 16px;
}

.info-link:hover {
  color: #3e60c9;
  text-decoration: none;
}

/* Partner Logo in Quick Info */
.quick-info-logo {
  padding-top: 16px;
	text-align: right;
}

.quick-info-logo img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
	display: block;
	margin-left: auto;
}

/* Resource Links */
.resource-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #4172dc;
  font-weight: 500;
  text-decoration: none;
}

.resource-link:hover {
  color: #3e60c9;
  text-decoration: none;
}

.resource-link i {
  color: #4172dc;
  font-size: 14px;
}

/* Sidebar CTA Card */
.sidebar-cta-card {
  background: white;
  border: 2px solid #4172dc;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.sidebar-cta-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: #4172dc;
  color: white;
  border-color: #4172dc;
}

.btn-primary:hover {
  background: #3e60c9;
  border-color: #3e60c9;
  text-decoration: none;
}

.btn-secondary {
  background: white;
  color: #667085;
  border-color: #d1d5db;
}

.btn-secondary:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  text-decoration: none;
}

.btn-primary-large {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  background: #4172dc;
  color: white;
  border-color: #4172dc;
}

.btn-primary-large:hover {
  background: #3e60c9;
  border-color: #3e60c9;
  text-decoration: none;
}

.btn-secondary-large {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  background: white;
  color: #667085;
  border-color: #d1d5db;
}

.btn-secondary-large:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  text-decoration: none;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .partner-name {
    font-size: 32px;
  }
  
  .partner-tagline {
    font-size: 18px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .bottom-cta-title {
    font-size: 24px;
  }
  
  .bottom-cta-section {
    padding: 32px 24px;
  }
  
  /* Ensure proper stacking on mobile */
  .sidebar-column {
    order: 1;
  }
  
  .main-column {
    order: 2;
  }
}