/* Home CTA Section - Site 2 */
.home-cta {
  padding: 80px 20px;
  background-color: #ffffff;
}

.home-cta .container {
  max-width: 1400px;
  margin: 0 auto;
}

.home-cta .cta-wrapper {
  background: linear-gradient(135deg, #e8f4f8 0%, #e1f0f5 100%);
  border-radius: 40px;
  padding: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.home-cta .cta-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

/* Left Column - Image */
.home-cta .cta-image-col {
  position: relative;
}

.home-cta .cta-image-wrapper {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.home-cta .cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
}

/* Right Column - Content */
.home-cta .cta-content-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-cta .cta-eyebrow {
  font-size: 14px;
  color: #1a1a1a;
  text-transform: uppercase;
  font-weight: bold;
  margin: 0;
  letter-spacing: 1px;
}

.home-cta .cta-heading {
  font-size: 48px;
  font-weight: bold;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
}

.home-cta .cta-description {
  margin: 0;
}

.home-cta .cta-description p {
  font-size: 18px;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

.home-cta .cta-description a {
  color: rgb(120, 104, 230);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.home-cta .cta-description a:hover {
  color: rgb(90, 70, 200);
  text-decoration: underline;
}

.home-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, rgb(120, 104, 230) 0%, rgb(90, 70, 200) 100%);
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(120, 104, 230, 0.3);
}

.home-cta .cta-button .cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.home-cta .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(120, 104, 230, 0.5);
}

/* Tablet - 1024px to 1199px */
@media (max-width: 1199px) and (min-width: 1024px) {
  .home-cta {
    padding: 60px 20px;
  }

  .home-cta .cta-wrapper {
    padding: 50px;
    border-radius: 35px;
  }

  .home-cta .cta-grid {
    gap: 40px;
  }

  .home-cta .cta-heading {
    font-size: 42px;
  }

  .home-cta .cta-description p {
    font-size: 17px;
  }

  .home-cta .cta-image {
    min-height: 350px;
  }
}

/* Mobile - Below 1024px */
@media (max-width: 1023px) {
  .home-cta {
    padding: 50px 20px;
  }

  .home-cta .cta-wrapper {
    padding: 40px 30px;
    border-radius: 30px;
  }

  .home-cta .cta-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-cta .cta-content-col {
    text-align: center;
    align-items: center;
  }

  .home-cta .cta-eyebrow {
    font-size: 12px;
  }

  .home-cta .cta-heading {
    font-size: 32px;
  }

  .home-cta .cta-description p {
    font-size: 16px;
  }

  .home-cta .cta-button {
    padding: 15px 35px;
    font-size: 14px;
  }

  .home-cta .cta-image {
    min-height: 300px;
  }

  .home-cta .cta-image-wrapper {
    border-radius: 20px;
  }
}

/* Extra Small Mobile - Below 480px */
@media (max-width: 479px) {
  .home-cta .cta-wrapper {
    padding: 30px 20px;
    border-radius: 25px;
  }

  .home-cta .cta-heading {
    font-size: 28px;
  }

  .home-cta .cta-description p {
    font-size: 15px;
  }

  .home-cta .cta-image {
    min-height: 250px;
  }
}
