/* Tempo Traveller — kamanatravels.com/tempo-traveller-rewa */
.tempo-page {
  font-family: var(--sans), "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.tempo-page .tp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Hero */
.tempo-page .tp-hero {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
  color: #fff;
  padding: 6.25rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tempo-page .tp-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 20'%3E%3Cdefs%3E%3Cpattern id='c' width='20' height='20' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='10' cy='10' r='2' fill='white' opacity='0.1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='20' fill='url(%23c)'/%3E%3C/svg%3E") repeat;
  animation: tp-float 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes tp-float {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-20px); }
}

.tempo-page .tp-hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.tempo-page .tp-hero h1 {
  font-family: var(--sans);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin: 0 0 1.25rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.15;
  background: linear-gradient(45deg, #fff, #e0e0e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tempo-page .tp-hero__tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  margin: 0 0 1rem;
  opacity: 0.95;
  font-weight: 300;
  color: #ffe0e6;
}

.tempo-page .tp-hero__lead {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin: 0 auto 1rem;
  opacity: 0.9;
  max-width: 700px;
  line-height: 1.7;
  color: #fff;
}

.tempo-page .tp-hero__options {
  font-size: 1.1rem;
  margin: 0 auto 2.5rem;
  color: #ffcc00;
  font-weight: 600;
}

.tempo-page .tp-hero__cta {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.tempo-page .tp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--sans);
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tempo-page .tp-btn--primary {
  background: linear-gradient(45deg, #ff6b6b, #ee5a5a);
  color: #fff;
}

.tempo-page .tp-btn--primary:hover {
  background: linear-gradient(45deg, #ee5a5a, #dd4545);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 107, 107, 0.4);
  color: #fff;
}

.tempo-page .tp-btn--secondary {
  background: #fff;
  color: #f5576c;
  border: 3px solid transparent;
}

.tempo-page .tp-btn--secondary:hover {
  background: #fff5f7;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
  border-color: #fff;
  color: #f5576c;
}

/* Main services block */
.tempo-page .tp-services {
  padding: 5.5rem 1.25rem;
  background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

.tempo-page .tp-services > .tp-container > h2 {
  font-family: var(--sans);
  font-size: clamp(1.75rem, 4vw, 3rem);
  text-align: center;
  margin: 0 0 1rem;
  font-weight: 900;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tempo-page .tp-services__sub {
  text-align: center;
  font-size: 1.15rem;
  color: #666;
  margin: 0 auto 3.5rem;
  max-width: 700px;
  line-height: 1.65;
}

/* Fleet cards */
.tempo-page .tp-fleet {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.tempo-page .tp-vehicle-card {
  background: #fff;
  padding: 0 0 2rem;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tempo-page .tp-vehicle-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  pointer-events: none;
}

.tempo-page .tp-vehicle-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(102, 126, 234, 0.25);
  border-color: #667eea;
}

.tempo-page .tp-vehicle-card:hover::before {
  opacity: 0.95;
}

.tempo-page .tp-vehicle-card:hover .tp-vehicle-card__body * {
  color: #fff !important;
}

.tempo-page .tp-vehicle-card:hover .tp-vehicle-card__price {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}

.tempo-page .tp-vehicle-card__img {
  position: relative;
  z-index: 1;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
  background: #f0f0f0;
}

.tempo-page .tp-vehicle-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tempo-page .tp-vehicle-card:hover .tp-vehicle-card__img img {
  transform: scale(1.05);
}

.tempo-page .tp-vehicle-card__body {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.75rem 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tempo-page .tp-vehicle-card__icon {
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 2.75rem;
  margin-bottom: 0.75rem;
  display: block;
  line-height: 1;
  transition: transform 0.3s ease;
}

.tempo-page .tp-vehicle-card:hover .tp-vehicle-card__icon {
  transform: scale(1.1);
}

.tempo-page .tp-vehicle-card h3 {
  font-family: var(--sans);
  font-size: 1.45rem;
  margin: 0 0 0.5rem;
  color: #2c3e50;
  font-weight: 700;
}

.tempo-page .tp-vehicle-card__sub {
  font-size: 1.1rem;
  color: #f5576c;
  font-weight: 700;
  margin: 0 0 1rem;
}

.tempo-page .tp-vehicle-card__features {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  text-align: left;
  width: 100%;
  flex: 1;
}

.tempo-page .tp-vehicle-card__features li {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.75;
  padding: 0.15rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
}

.tempo-page .tp-vehicle-card__features li::before {
  content: "•";
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.tempo-page .tp-vehicle-card__price {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 0.85rem 1.25rem;
  border-radius: 15px;
  font-size: 1.05rem;
  font-weight: 700;
  width: 100%;
  max-width: 280px;
  margin-top: auto;
}

/* Amenities — purple band */
.tempo-page .tp-amenities {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 3.5rem 2rem;
  border-radius: 25px;
  margin: 3.5rem 0;
}

.tempo-page .tp-amenities h3 {
  font-family: var(--sans);
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  text-align: center;
  margin: 0 0 2.5rem;
  font-weight: 700;
  color: #fff;
}

.tempo-page .tp-amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1.75rem;
}

.tempo-page .tp-amenity {
  background: rgba(255, 255, 255, 0.15);
  padding: 1.75rem 1.25rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.tempo-page .tp-amenity:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
}

.tempo-page .tp-amenity__icon-wrap {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.tempo-page .tp-amenity__icon {
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 1.65rem;
  line-height: 1;
}

.tempo-page .tp-amenity h4 {
  font-family: var(--sans);
  font-size: 1.15rem;
  margin: 0 0 0.65rem;
  font-weight: 600;
  color: #fff;
}

.tempo-page .tp-amenity p {
  line-height: 1.6;
  opacity: 0.92;
  margin: 0;
  font-size: 0.92rem;
  color: #fff;
}

/* Occasions */
.tempo-page .tp-occasions {
  background: #f8f9ff;
  padding: 3.5rem 2rem;
  border-radius: 25px;
  margin: 3.5rem 0;
}

.tempo-page .tp-occasions h3 {
  font-family: var(--sans);
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  text-align: center;
  margin: 0 0 2.5rem;
  color: #2c3e50;
  font-weight: 700;
}

.tempo-page .tp-occasions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.75rem;
}

.tempo-page .tp-occasion-card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.tempo-page .tp-occasion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.tempo-page .tp-occasion-card__emoji {
  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;
}

.tempo-page .tp-occasion-card h4 {
  font-family: var(--sans);
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
  color: #2c3e50;
  font-weight: 700;
}

.tempo-page .tp-occasion-card p {
  color: #666;
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

/* Testimonials */
.tempo-page .tp-testimonials {
  background: #f8f9ff;
  padding: 3.5rem 1.5rem;
  margin: 3.5rem 0;
  border-radius: 25px;
}

.tempo-page .tp-testimonials h3 {
  font-family: var(--sans);
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  text-align: center;
  margin: 0 0 2.5rem;
  color: #2c3e50;
  font-weight: 700;
}

.tempo-page .tp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.75rem;
  max-width: 1000px;
  margin: 0 auto;
}

.tempo-page .tp-testimonial {
  background: #fff;
  padding: 1.75rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
}

.tempo-page .tp-testimonial::before {
  content: '"';
  font-size: 4rem;
  color: #667eea;
  position: absolute;
  top: -0.25rem;
  left: 1rem;
  opacity: 0.3;
  line-height: 1;
}

.tempo-page .tp-testimonial p {
  font-style: italic;
  margin: 0 0 1rem;
  line-height: 1.7;
  color: #555;
  position: relative;
  z-index: 1;
}

.tempo-page .tp-testimonial__author {
  font-weight: 700;
  color: #2c3e50;
  font-size: 0.95rem;
}

/* Contact */
.tempo-page .tp-contact {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
  color: #fff;
  padding: 4rem 1.5rem;
  text-align: center;
  border-radius: 25px;
  margin-top: 3.5rem;
}

.tempo-page .tp-contact h3 {
  font-family: var(--sans);
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin: 0 0 1rem;
  font-weight: 800;
  color: #fff;
}

.tempo-page .tp-contact__lead {
  font-size: 1.1rem;
  margin: 0 0 2.5rem;
  opacity: 0.95;
}

.tempo-page .tp-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.tempo-page .tp-contact-card {
  background: rgba(255, 255, 255, 0.2);
  padding: 1.75rem 1.25rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.tempo-page .tp-contact-card:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
}

.tempo-page .tp-contact-card__icon {
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 2.25rem;
  margin-bottom: 0.65rem;
  line-height: 1;
}

.tempo-page .tp-contact-card__label {
  font-size: 1rem;
  margin: 0 0 0.35rem;
  opacity: 0.9;
}

.tempo-page .tp-contact-card__value {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.tempo-page .tp-contact-card a.tp-contact-card__value {
  color: #fff;
  text-decoration: none;
}

.tempo-page .tp-contact__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  margin-top: 2rem;
}

/* SEO guide */
.tempo-page .tp-guide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
  background: #f8f9ff;
}

.tempo-page .tp-guide__inner {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.tempo-page .tp-guide__inner > h2 {
  font-family: var(--sans);
  color: #2c3e50;
  margin: 0 0 1.5rem;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 800;
}

.tempo-page .tp-guide__block {
  margin-bottom: 1.75rem;
}

.tempo-page .tp-guide__block:last-child {
  margin-bottom: 0;
}

.tempo-page .tp-guide__block h3 {
  font-family: var(--sans);
  color: #667eea;
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.tempo-page .tp-guide__block p {
  line-height: 1.7;
  color: #666;
  margin: 0;
  font-size: 0.98rem;
}

@media (max-width: 768px) {
  .tempo-page .tp-hero {
    padding: 4.5rem 1.25rem;
  }

  .tempo-page .tp-hero__cta,
  .tempo-page .tp-contact__cta {
    flex-direction: column;
    align-items: center;
  }

  .tempo-page .tp-btn {
    width: 100%;
    max-width: 320px;
  }

  .tempo-page .tp-fleet {
    grid-template-columns: 1fr;
  }
}
