/* Rewa Sightseeing — kamanatravels.com/rewa-sightseeing */
.sightseeing-page {
  font-family: var(--sans), "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

.sightseeing-page .rs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Hero */
.sightseeing-page .rs-hero {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  padding: 5rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sightseeing-page .rs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='20' cy='20' r='2' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='80' cy='40' r='1.5' fill='rgba(255,255,255,0.1)'/%3E%3Ccircle cx='40' cy='80' r='1' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E");
  animation: rs-float 20s infinite linear;
  pointer-events: none;
}

@keyframes rs-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.sightseeing-page .rs-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.sightseeing-page .rs-hero h1 {
  font-family: var(--sans);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #1565c0;
  margin: 0 0 1.25rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  font-weight: 800;
  line-height: 1.2;
}

.sightseeing-page .rs-hero__lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #424242;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.sightseeing-page .rs-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.sightseeing-page .rs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  margin: 0.35rem;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.05rem;
  font-family: var(--sans);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
}

.sightseeing-page .rs-btn--primary {
  background: linear-gradient(45deg, #2196f3, #1976d2);
  color: #fff;
}

.sightseeing-page .rs-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
  color: #fff;
}

.sightseeing-page .rs-btn--secondary {
  background: linear-gradient(45deg, #4caf50, #388e3c);
  color: #fff;
}

.sightseeing-page .rs-btn--secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
  color: #fff;
}

.sightseeing-page .rs-btn--whatsapp {
  background: #25d366;
  color: #fff;
}

.sightseeing-page .rs-btn--whatsapp:hover {
  color: #fff;
  transform: translateY(-3px);
}

.sightseeing-page .rs-btn--light {
  background: #fff;
  color: #1565c0;
}

.sightseeing-page .rs-btn--light:hover {
  color: #1565c0;
  transform: translateY(-3px);
}

/* Places */
.sightseeing-page .rs-places-section {
  padding: 5rem 1.25rem;
  background: #fff;
}

.sightseeing-page .rs-places-section h2 {
  text-align: center;
  font-family: var(--sans);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1565c0;
  margin: 0 0 2.5rem;
  font-weight: 800;
  position: relative;
  padding-bottom: 1rem;
}

.sightseeing-page .rs-places-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #2196f3, #4caf50);
  border-radius: 2px;
}

.sightseeing-page .rs-places-section__sub {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin: -1.5rem auto 2.5rem;
  max-width: 640px;
  line-height: 1.65;
}

.sightseeing-page .rs-places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.85rem;
  margin-top: 2rem;
}

.sightseeing-page .rs-place-card {
  background: #fff;
  border-radius: 15px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
}

.sightseeing-page .rs-place-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(45deg, #2196f3, #4caf50);
}

.sightseeing-page .rs-place-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.sightseeing-page .rs-place-card h3 {
  color: #1565c0;
  font-family: var(--sans);
  font-size: 1.35rem;
  margin: 0 0 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 700;
  line-height: 1.35;
}

.sightseeing-page .rs-place-card__emoji {
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.sightseeing-page .rs-place-card p {
  color: #666;
  line-height: 1.8;
  margin: 0 0 0.85rem;
  font-size: 0.98rem;
}

.sightseeing-page .rs-place-card__dist {
  color: #2196f3;
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0;
}

/* Why choose */
.sightseeing-page .rs-features {
  padding: 5rem 1.25rem;
  background: #f8f9fa;
}

.sightseeing-page .rs-features h2 {
  text-align: center;
  font-family: var(--sans);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #1565c0;
  margin: 0 0 2.5rem;
  font-weight: 800;
}

.sightseeing-page .rs-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 1.75rem;
  max-width: 1200px;
  margin: 0 auto;
}

.sightseeing-page .rs-feature-item {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.sightseeing-page .rs-feature-item:hover {
  transform: translateY(-5px);
}

.sightseeing-page .rs-feature-item__icon {
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 2.75rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

.sightseeing-page .rs-feature-item h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  color: #1565c0;
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.sightseeing-page .rs-feature-item p {
  color: #666;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Contact */
.sightseeing-page .rs-contact {
  padding: 5rem 1.25rem;
  background: linear-gradient(135deg, #1565c0, #2196f3);
  color: #fff;
  text-align: center;
}

.sightseeing-page .rs-contact h2 {
  font-family: var(--sans);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 1rem;
  font-weight: 800;
  color: #fff;
}

.sightseeing-page .rs-contact__lead {
  font-size: 1.15rem;
  margin: 0 auto 2rem;
  opacity: 0.95;
  max-width: 560px;
}

.sightseeing-page .rs-contact__facts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin: 2rem 0;
}

.sightseeing-page .rs-contact__fact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}

.sightseeing-page .rs-contact__fact-icon {
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
}

.sightseeing-page .rs-contact__fact a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.sightseeing-page .rs-contact__fact a:hover {
  text-decoration: underline;
}

.sightseeing-page .rs-contact__fact span:not(.rs-contact__fact-icon) {
  font-weight: 500;
}

.sightseeing-page .rs-contact__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .sightseeing-page .rs-hero {
    padding: 3.75rem 1.25rem;
  }

  .sightseeing-page .rs-hero__cta,
  .sightseeing-page .rs-contact__cta {
    flex-direction: column;
    align-items: center;
  }

  .sightseeing-page .rs-btn {
    width: 100%;
    max-width: 280px;
  }

  .sightseeing-page .rs-contact__facts {
    flex-direction: column;
    align-items: center;
  }
}
