/* Partners Page Specific Styles */

/* Hero Section */
.partners-hero {
  min-height: 60vh;
  color: var(--white);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

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

.partners-hero h1 {
  font-size: 70px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.partners-hero .lead {
  font-size: 1.15rem;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
}

/* Partners Section */
.partners-section {
  background: #fff;
  padding: 5rem 1rem;
}

.section-title {
  font-size: 42px;
  font-weight: 600;
  color: #212121;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e0e0e0;
}

/* Partner Card - Full Page Style */
.partner-card-full {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.partner-card-full:hover {
  transform: translateY(-8px);
}

.partner-img-wrapper-full {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 0;
}

.partner-img-wrapper-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

.partner-card-full:hover .partner-img-wrapper-full img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Overlay */
.partner-overlay-full {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.partner-overlay-full span {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 2px solid #fff;
  border-radius: 0;
}

.partner-card-full:hover .partner-overlay-full {
  opacity: 1;
}

/* Partner Info */
.partner-info-full {
  padding: 1.5rem 0;
  text-align: center;
}

.partner-info-full h5 {
  font-size: 1.25rem;
  color: #212121;
  margin-bottom: 0.25rem;
}

.partner-info-full p {
  font-size: 0.95rem;
  color: #808080;
}

/* CTA Section */
.partners-cta {
  position: relative;
  padding: 6rem 1rem;
}

.partners-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

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

.partners-cta h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
}

/* CTA Buttons */
.btn-cta-contact {
  display: inline-block;
  padding: 14px 36px;
  background: #fff;
  color: #212121;
  text-decoration: none;
  border-radius: 0;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid #fff;
}

.btn-cta-contact:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
}

.btn-cta-outline {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  border-radius: 0;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid #fff;
}

.btn-cta-outline:hover {
  background: #fff;
  color: #212121;
  transform: translateY(-2px);
}

/* Button Styles - View All Partners */
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #212121;
  color: #fff;
  text-decoration: none;
  border-radius: 0;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  border: 2px solid #212121;
}

.btn-view-all:hover {
  background: transparent;
  color: #212121;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-view-all svg {
  transition: transform 0.3s ease;
}

.btn-view-all:hover svg {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .partners-hero h1 {
    font-size: 2.5rem;
  }
  
  .partners-hero .lead {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .partner-img-wrapper-full {
    height: 380px;
  }

  .partners-cta h2 {
    font-size: 1.5rem;
  }

  .btn-cta-contact,
  .btn-cta-outline {
    display: block;
    margin: 0.5rem 0;
  }

  .btn-cta-outline.ms-3 {
    margin-left: 0 !important;
  }
}

