/*--------------------------------------------------------------
# Intentures LLC Custom Styles
# Template Version - Works with Imperial Bootstrap Theme
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Service Cards with Pricing
--------------------------------------------------------------*/
.service-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

.service-card .service-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.service-card .icon {
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  transition: 0.5s;
  border: 1px solid var(--accent-color);
  margin-right: 20px;
  flex-shrink: 0;
}

.service-card .icon i {
  color: var(--contrast-color);
  font-size: 24px;
  line-height: 0;
}

.service-card:hover .icon {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.service-card .title {
  font-weight: 700;
  font-size: 20px;
  margin: 0;
  color: var(--heading-color);
}

.service-card .description {
  color: var(--default-color);
  margin-bottom: 25px;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Pricing Options
--------------------------------------------------------------*/
.pricing-options {
  margin-top: 20px;
}

.price-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.price-details {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.period {
  font-size: 14px;
  color: var(--default-color);
  font-weight: 400;
}

/*--------------------------------------------------------------
# Stripe Buttons
--------------------------------------------------------------*/
.stripe-button {
  display: inline-block;
  width: 100%;
  padding: 12px 20px;
  background: #635bff;
  color: #ffffff;
  text-align: center;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid #635bff;
}

.stripe-button:hover {
  background: #4f46e5;
  border-color: #4f46e5;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 91, 255, 0.3);
}

.stripe-button:active {
  transform: translateY(0);
}

/*--------------------------------------------------------------
# Portfolio Cards
--------------------------------------------------------------*/
.portfolio-card {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  border-radius: 10px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: var(--surface-color);
}

.portfolio-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.portfolio-content p {
  color: var(--default-color);
  margin-bottom: 15px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Portfolio Tags
--------------------------------------------------------------*/
.tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-saas {
  background: color-mix(in srgb, #3b82f6, transparent 85%);
  color: #1e40af;
}

.tag-ai {
  background: color-mix(in srgb, #8b5cf6, transparent 85%);
  color: #5b21b6;
}

.tag-platform {
  background: color-mix(in srgb, #10b981, transparent 85%);
  color: #065f46;
}

.tag-service {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: color-mix(in srgb, var(--accent-color), black 40%);
}

/*--------------------------------------------------------------
# Footer Links
--------------------------------------------------------------*/
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Social Media Links (including YouTube)
--------------------------------------------------------------*/
.footer .social-links a.youtube {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  transition: 0.3s;
  margin-right: 10px;
}

.footer .social-links a.youtube:hover {
  color: #ff0000;
  border-color: #ff0000;
  background: color-mix(in srgb, #ff0000, transparent 90%);
}

/*--------------------------------------------------------------
# Linkable Portfolio Cards
--------------------------------------------------------------*/
.portfolio-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.portfolio-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.portfolio-card a {
  text-decoration: none;
  color: inherit;
}

.portfolio-card a:hover {
  text-decoration: none;
}

/*--------------------------------------------------------------
# Contact Form Select Dropdown
--------------------------------------------------------------*/
.contact .php-email-form select {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  color: var(--default-color);
  font-size: 14px;
  border-radius: 0;
  box-shadow: none;
}

.contact .php-email-form select:focus {
  border-color: var(--accent-color);
  outline: none;
}

/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .service-card {
    margin-bottom: 20px;
  }

  .price-details {
    flex-direction: column;
    align-items: flex-start;
  }

  .price {
    font-size: 24px;
    margin-bottom: 5px;
  }

  .period {
    margin-bottom: 10px;
  }

  .stripe-button {
    font-size: 13px;
    padding: 10px 16px;
  }
}

@media (max-width: 576px) {
  .service-card .service-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-card .icon {
    margin-bottom: 15px;
  }

  .portfolio-card {
    padding: 20px;
  }
}
