/* New Homepage Styles - Clean Implementation */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Base styles with unique class names */
.rentak-homepage {
  font-family: 'Inter', sans-serif;
  color: #111827;
  background-color: #ffffff;
}

.rentak-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Typography */
.rentak-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0d9488;
  margin-bottom: 1rem;
  text-align: center;
}

.rentak-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* Card styles */
.rentak-card-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.rentak-card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  border: 1px solid rgba(20, 184, 166, 0.2);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  width: 100%;
  max-width: 350px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.rentak-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.rentak-card-header {
  background-color: #14b8a6;
  color: white;
  padding: 1.5rem;
  text-align: center;
}

.rentak-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.rentak-card-body {
  padding: 1.5rem;
  flex: 1;
}

.rentak-card-description {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.rentak-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rentak-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  padding: 0.75rem;
  background-color: rgba(20, 184, 166, 0.1);
  border-radius: 0.375rem;
  transition: background-color 0.2s ease;
}

.rentak-feature-item:hover {
  background-color: rgba(20, 184, 166, 0.2);
}

.rentak-feature-icon {
  color: #14b8a6;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.rentak-feature-text {
  color: #4b5563;
}

.rentak-card-footer {
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid rgba(20, 184, 166, 0.1);
}

.rentak-link {
  color: #14b8a6;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
  text-decoration: none;
}

.rentak-link:hover {
  color: #0d9488;
}

.rentak-link-icon {
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.rentak-link:hover .rentak-link-icon {
  transform: translateX(3px);
}

/* Swiper specific styles */
.rentak-swiper-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  overflow: hidden;
  position: relative;
}

.rentak-swiper-wrapper {
  display: flex;
  transition: transform 0.3s ease;
}

.rentak-swiper-slide {
  flex-shrink: 0;
  width: 100%;
  padding: 1rem;
}

.rentak-swiper-pagination {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.5rem;
}

.rentak-swiper-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e5e7eb;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rentak-swiper-bullet.active {
  background-color: #14b8a6;
  transform: scale(1.2);
}

.rentak-swiper-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid rgba(20, 184, 166, 0.3);
  color: #14b8a6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.rentak-swiper-button:hover {
  background-color: #14b8a6;
  color: white;
}

.rentak-swiper-button-prev {
  left: 10px;
}

.rentak-swiper-button-next {
  right: 10px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .rentak-swiper-slide {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .rentak-swiper-slide {
    width: 33.333%;
  }
}

/* Section styles */
.rentak-section {
  padding: 4rem 0;
}

.rentak-section-title {
  text-align: center;
  margin-bottom: 3rem;
}

/* Button styles */
.rentak-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: #14b8a6;
  color: white;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.rentak-button:hover {
  background-color: #0d9488;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.rentak-button-icon {
  margin-left: 0.5rem;
}

/* Utility classes */
.rentak-text-center {
  text-align: center;
}

.rentak-mt-4 {
  margin-top: 1rem;
}

.rentak-mt-8 {
  margin-top: 2rem;
}

.rentak-mb-4 {
  margin-bottom: 1rem;
}

.rentak-mb-8 {
  margin-bottom: 2rem;
}
