.collaboration-cta {
  background: var(--gradient-primary);
  padding: 4rem;
  border-radius: 0px;
  text-align: center;
  color: white;
}

.cta-content h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

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

.cta-buttons .btn-primary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-buttons .btn-secondary {
  background: white;
  color: #2c6d92;
  border: none;
}

.contact-scenarios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.scenario-card {
  background: white;
  padding: 3rem;
  border-radius: 0px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.scenario-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.scenario-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.scenario-icon {
  background: #e06ccf;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.scenario-card h3 {
  color: black;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.scenario-card p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.scenario-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.feature-tag {
  background: #2c6d92;
  color: white;
  padding: 4px 12px;
  border-radius: 0px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Gallery Styles */
.tp-gallery-area {
  background-color: #ffffff;
}

.tp-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.tp-gallery-item:hover {
  transform: translateY(-5px);
}

.tp-gallery-thumb {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.tp-gallery-thumb-large {
  height: 350px;
}

.tp-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tp-gallery-item:hover .tp-gallery-thumb img {
  transform: scale(1.1);
}

.tp-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(var(--tp-theme-2-rgb), 0.9),
    rgba(0, 0, 0, 0.7)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.tp-gallery-item:hover .tp-gallery-overlay {
  opacity: 1;
}

.tp-gallery-content {
  text-align: center;
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.tp-gallery-item:hover .tp-gallery-content {
  transform: translateY(0);
}

.tp-gallery-icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.tp-gallery-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  transform: scale(1.1);
}

.tp-gallery-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}

.tp-gallery-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* Custom styles to fix alignment and hover issues */
.sai-hero-section {
  padding: 120px 0;
  background: #f8f9fa;
}

.sai-section {
  padding: 80px 0;
}

.sai-dark-section {
  background-color: var(--tp-common-black-3);
  color: #fff;
}

.sai-card {
  background: #fff;
  border-radius: 0px;
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
  border: none;
}

.sai-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.sai-card .sai-icon {
  width: 70px;
  height: 70px;
  background: var(--tp-theme-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 30px;
  color: #fff;
}

.sai-card h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.sai-card p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.sai-benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  background: #f8f9fa;
  border-radius: 0px;
}

.sai-benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--tp-theme-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  font-size: 20px;
  color: #fff;
}

.sai-benefit-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.sai-benefit-content p {
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.sai-pricing-card {
  background: #fff;
  border-radius: 0px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.sai-pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--tp-theme-1);
}

.sai-pricing-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--tp-theme-1);
  margin-bottom: 30px;
}

.sai-pricing-features {
  text-align: left;
  margin: 30px 0;
}

.sai-pricing-features li {
  list-style: none;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
}

.sai-pricing-features li:last-child {
  border-bottom: none;
}

.sai-pricing-features li i {
  color: var(--tp-theme-1);
  margin-right: 15px;
  font-size: 16px;
}

.sai-section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.sai-dark-section .sai-section-title {
  color: #fff;
}

.sai-section-subtitle {
  font-size: 16px;
  color: var(--tp-theme-1);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.sai-text-large {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.sai-dark-section .sai-text-large {
  color: #ccc;
}

.sai-form {
  background: #fff;
  padding: 50px;
  border-radius: 0px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.sai-form-input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e9ecef;
  border-radius: 0px;
  font-size: 16px;
  margin-bottom: 20px;
  transition: border-color 0.3s ease;
}

.sai-form-input:focus {
  outline: none;
  border-color: var(--tp-theme-1);
}

.sai-form-select {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e9ecef;
  border-radius: 0px;
  font-size: 16px;
  margin-bottom: 20px;
  background: #fff;
  transition: border-color 0.3s ease;
}

.sai-form-select:focus {
  outline: none;
  border-color: var(--tp-theme-1);
}

@media (max-width: 768px) {
  .sai-section {
    padding: 60px 0;
  }

  .sai-hero-section {
    padding: 80px 0;
  }

  .sai-section-title {
    font-size: 28px;
  }

  .sai-form {
    padding: 30px 20px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .tp-gallery-thumb,
  .tp-gallery-thumb-large {
    height: 220px;
  }
}

/* Animation for gallery items */
.tp-gallery-item {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.tp-gallery-item:nth-child(1) {
  animation-delay: 0.1s;
}
.tp-gallery-item:nth-child(2) {
  animation-delay: 0.2s;
}
.tp-gallery-item:nth-child(3) {
  animation-delay: 0.3s;
}
.tp-gallery-item:nth-child(4) {
  animation-delay: 0.4s;
}
.tp-gallery-item:nth-child(5) {
  animation-delay: 0.5s;
}
.tp-gallery-item:nth-child(6) {
  animation-delay: 0.6s;
}

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

@media (max-width: 768px) {
  .collaboration-cta {
    padding: 2rem;
  }
  .contact-scenarios {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .scenario-card {
    padding: 2rem;
  }
}
.tp-contact-radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #f5f5f8;
  padding: 20px;
  border-radius: 0px;
}

.tp-contact-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.5;
}

.tp-contact-radio input[type="radio"] {
  accent-color: #ec639e; /* Adjust to your theme */
  transform: scale(1.2);
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.pricing-card {
  background: white;
  border-radius: 0px;
  padding: 40px 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-badge {
  background: var(--tp-theme-1);
  color: white;
  padding: 8px 20px;
  border-radius: 0px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.pricing-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333; /* Ensure title color is readable on white background */
}

.pricing-price {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
  color: var(--tp-theme-1); /* Price color */
}

.pricing-currency {
  font-size: 18px;
  font-weight: 600;
  opacity: 0.8;
  color: #555;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  color: #555;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  color: var(--tp-theme-2); /* Checkmark color */
  margin-right: 12px;
  font-size: 16px;
}

/* Custom Select Styling */
.tp-contact-form-input-box select.custom-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 0px;
  font-size: 16px;
  background-color: #fff;
  color: #333;
  height: auto; /* Ensure height is not fixed by other styles */
}

/* Contact Info Styles */

.contact-info-card {
  background: white;
  border-radius: 0px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%; /* Ensure cards are same height */
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--tp-theme-1) 0%, #b34a9e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: white;
}

.contact-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2c3e50;
}

.contact-link {
  font-size: 18px;
  color: var(--tp-theme-2);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: var(--tp-theme-1);
  text-decoration: none;
}

/* Enhanced Brands Gallery Styles */
.brands-showcase-section {
  background-color: #f9f9f9;
}

.section-title {
  font-size: 2.5rem;
  color: var(--tp-theme-1);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.brand-section {
  background: white;
  border-radius: 0px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.brand-info-box {
  padding: 30px;
  position: relative;
  z-index: 1;
}

.brand-info-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(var(--tp-theme-1-rgb), 0.05) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  z-index: -1;
  border-radius: 0px;
}

.brand-logo {
  width: 150px;
  height: 150px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.brand-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  display: block;
}

.brand-name {
  font-size: 1.8rem;
  color: var(--tp-theme-1);
  margin-bottom: 1rem;
  text-align: center;
}

.brand-description {
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-align: center;
}

.brand-social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 10px 15px;
  border-radius: 0px;
}

.social-link i {
  font-size: 1.2rem;
}

.social-link.instagram {
  background: rgba(225, 48, 108, 0.1);
  color: #e1306c;
}

.social-link.facebook {
  background: rgba(66, 103, 178, 0.1);
  color: #4267b2;
}

.social-link.web {
  background: rgba(66, 103, 178, 0.1);
  color: #42b271;
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.brand-gallery-grid {
  border-left: 1px solid #eee;
  padding-left: 30px;
}

.brand-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.brand-gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gallery-thumb {
  height: 200px;
  overflow: hidden;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.brand-gallery-item:hover .gallery-thumb img {
  transform: scale(1.1);
}

.gallery-caption {
  padding: 15px;
  background: white;
  text-align: center;
}

.gallery-caption p {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
}

/* Brand Gallery Modal Styles */
.brand-gallery-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
}

.modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close-modal:hover {
  color: var(--tp-theme-1);
}

.slideshow-container {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
  text-align: center;
}

.slide.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  max-height: 80vh;
  max-width: 90%;
  object-fit: contain;
  margin: auto;
}

.prev {
  left: 0;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.3s;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.5);
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.3s;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.5);
}

.prev:hover,
.next:hover {
  background-color: var(--tp-theme-1);
}

/* Make gallery items clickable */
.brand-gallery-item {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.brand-gallery-item:hover {
  transform: scale(1.02);
}

/* Mobile Responsiveness Adjustments */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    padding: 20px 0;
  }

  .slide img {
    max-height: 70vh;
    max-width: 95%;
  }

  .close-modal {
    top: 10px;
    right: 15px;
    font-size: 30px;
  }

  .prev,
  .next {
    padding: 10px;
    font-size: 20px;
  }
  .brand-gallery-grid {
    padding-left: 0px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: 100%;
  }

  .slide img {
    max-height: 60vh;
  }

  .prev,
  .next {
    background-color: rgba(0, 0, 0, 0.8);
  }
}
