/* Wedding Cars — matches kamanatravels.com/wedding-cars-rewa (pink theme, Georgia/Playfair) */
.wedding-page {
  font-family: Georgia, "Times New Roman", var(--serif);
  line-height: 1.6;
  color: #333;
  background: #fafafa;
}

.wedding-page .w-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Hero — pink gradient + animated pattern (live site “video” effect) */
.wedding-page .w-hero {
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 50%, #e91e63 100%);
  color: #2c1810;
  padding: 7.5rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wedding-page .w-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='30' r='2' fill='rgba(255,255,255,0.3)'/%3E%3Ccircle cx='80' cy='20' r='1.5' fill='rgba(255,255,255,0.2)'/%3E%3Ccircle cx='60' cy='80' r='2.5' fill='rgba(255,255,255,0.25)'/%3E%3Cpath d='M40,60 Q45,55 50,60 T60,60' stroke='rgba(255,255,255,0.15)' fill='none' stroke-width='1'/%3E%3C/svg%3E");
  animation: w-romantic-float 25s infinite linear;
  pointer-events: none;
}

@keyframes w-romantic-float {
  0% { transform: translate(0, 0) rotate(0deg); opacity: 0.7; }
  25% { transform: translate(-15px, -10px) rotate(90deg); opacity: 1; }
  50% { transform: translate(-10px, -25px) rotate(180deg); opacity: 0.8; }
  75% { transform: translate(10px, -15px) rotate(270deg); opacity: 1; }
  100% { transform: translate(0, 0) rotate(360deg); opacity: 0.7; }
}

.wedding-page .w-hero__inner {
  position: relative;
  z-index: 1;
}

.wedding-page .w-hero h1 {
  font-family: Georgia, var(--serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  margin: 0 0 1.5rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
  background: linear-gradient(45deg, #880e4f, #ad1457, #c2185b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wedding-page .w-hero__lead {
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  margin: 0 auto 2.5rem;
  max-width: 900px;
  color: #4a148c;
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
}

.wedding-page .w-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.wedding-page .w-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.15rem 2.25rem;
  margin: 0.35rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  font-family: var(--sans);
  transition: all 0.4s ease;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border: 2px solid transparent;
}

.wedding-page .w-btn--primary {
  background: linear-gradient(45deg, #e91e63, #ad1457);
  color: #fff;
}

.wedding-page .w-btn--primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(233, 30, 99, 0.4);
  background: linear-gradient(45deg, #ad1457, #880e4f);
  color: #fff;
}

.wedding-page .w-btn--secondary {
  background: linear-gradient(45deg, #4a148c, #6a1b9a);
  color: #fff;
}

.wedding-page .w-btn--secondary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(74, 20, 140, 0.4);
  background: linear-gradient(45deg, #6a1b9a, #8e24aa);
  color: #fff;
}

.wedding-page .w-btn--white {
  background: #fff;
  color: #880e4f;
  font-weight: 700;
}

.wedding-page .w-btn--white:hover {
  transform: translateY(-3px);
  color: #880e4f;
}

.wedding-page .w-btn--whatsapp {
  background: #25d366;
  color: #fff;
  font-weight: 700;
}

.wedding-page .w-btn--whatsapp:hover {
  transform: translateY(-3px);
  color: #fff;
}

/* Contact / book band */
.wedding-page .w-contact {
  padding: 6.25rem 1.25rem;
  background: linear-gradient(135deg, #880e4f, #ad1457, #e91e63);
  color: #fff;
  text-align: center;
}

.wedding-page .w-contact h2 {
  font-family: Georgia, var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: #fff;
}

.wedding-page .w-contact__lead {
  font-size: clamp(1rem, 2vw, 1.4rem);
  margin: 0 auto 3rem;
  max-width: 700px;
  opacity: 0.95;
  line-height: 1.6;
}

.wedding-page .w-contact__facts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem 3.5rem;
  margin: 2.5rem 0;
}

.wedding-page .w-contact__fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  max-width: 220px;
}

.wedding-page .w-contact__fact-icon {
  font-size: 3rem;
  line-height: 1;
}

.wedding-page .w-contact__fact strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.wedding-page .w-contact__fact a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.wedding-page .w-contact__fact a:hover {
  text-decoration: underline;
}

.wedding-page .w-contact__fact p {
  margin: 0;
  font-weight: 600;
}

.wedding-page .w-contact__btns {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.wedding-page .w-offers-box {
  margin-top: 2.5rem;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.wedding-page .w-offers-box h3 {
  font-family: var(--sans);
  font-size: 1.5rem;
  margin: 0 0 1.25rem;
  color: #fff;
}

.wedding-page .w-offers-box p {
  font-size: 1.05rem;
  margin: 0 0 0.85rem;
  opacity: 0.95;
}

.wedding-page .w-offers-box p:last-child {
  margin-bottom: 0;
}

/* Fleet section */
.wedding-page .w-fleet {
  padding: 6.25rem 1.25rem;
  background: #fff;
}

.wedding-page .w-fleet h2 {
  text-align: center;
  font-family: Georgia, var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #880e4f;
  font-weight: 700;
  margin: 0 0 1rem;
  position: relative;
  padding-bottom: 2rem;
}

.wedding-page .w-fleet h2::after {
  content: "♥";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: #e91e63;
}

.wedding-page .w-fleet__sub {
  text-align: center;
  font-size: 1.15rem;
  color: #666;
  margin: 0 auto 4rem;
  max-width: 800px;
  font-style: italic;
  line-height: 1.65;
}

.wedding-page .w-car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 2.5rem;
}

.wedding-page .w-car-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 1.75rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
}

.wedding-page .w-car-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.05), rgba(74, 20, 140, 0.05));
  z-index: 0;
  pointer-events: none;
}

.wedding-page .w-car-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  border-color: #e91e63;
}

.wedding-page .w-car-card:nth-child(1) { border-top: 6px solid #e91e63; }
.wedding-page .w-car-card:nth-child(2) { border-top: 6px solid #9c27b0; }
.wedding-page .w-car-card:nth-child(3) { border-top: 6px solid #673ab7; }
.wedding-page .w-car-card:nth-child(4) { border-top: 6px solid #3f51b5; }

.wedding-page .w-car-card h3 {
  position: relative;
  z-index: 1;
  color: #880e4f;
  font-family: Georgia, var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.wedding-page .w-car-card__icon {
  font-size: 2.5rem;
  line-height: 1;
}

.wedding-page .w-car-card p {
  position: relative;
  z-index: 1;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 1rem;
}

.wedding-page .w-car-card__price {
  position: relative;
  z-index: 1;
  color: #e91e63;
  font-weight: 700;
  font-size: 1.25rem;
}

/* Why choose */
.wedding-page .w-features {
  padding: 6.25rem 1.25rem;
  background: linear-gradient(135deg, #fce4ec, #f1bee7);
}

.wedding-page .w-features h2 {
  text-align: center;
  font-family: Georgia, var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #880e4f;
  font-weight: 700;
  margin: 0 0 4rem;
}

.wedding-page .w-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2.5rem;
}

.wedding-page .w-feature-item {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 1.75rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.wedding-page .w-feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(45deg, #e91e63, #9c27b0);
}

.wedding-page .w-feature-item:hover {
  transform: translateY(-10px);
}

.wedding-page .w-feature-item__icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1.25rem;
  line-height: 1;
}

.wedding-page .w-feature-item h3 {
  color: #880e4f;
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.wedding-page .w-feature-item p {
  color: #666;
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0;
}

/* Packages */
.wedding-page .w-packages {
  padding: 6.25rem 1.25rem;
  background: #fff;
}

.wedding-page .w-packages h2 {
  text-align: center;
  font-family: Georgia, var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #880e4f;
  font-weight: 700;
  margin: 0 0 4rem;
}

.wedding-page .w-packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2.5rem;
  align-items: stretch;
}

.wedding-page .w-package-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.wedding-page .w-package-card:hover {
  transform: translateY(-10px);
  border-color: #e91e63;
}

.wedding-page .w-package-card--featured {
  border-color: #e91e63;
  transform: scale(1.03);
}

.wedding-page .w-package-card--featured::before {
  content: "Most Popular";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #e91e63;
  color: #fff;
  padding: 0.45rem 1.25rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--sans);
  white-space: nowrap;
}

.wedding-page .w-package-card__title {
  font-size: 1.65rem;
  color: #880e4f;
  font-weight: 600;
  margin: 0 0 0.75rem;
  font-family: Georgia, var(--serif);
}

.wedding-page .w-package-card__price {
  font-size: 2.5rem;
  color: #e91e63;
  font-weight: 700;
  margin: 0 0 1.5rem;
}

.wedding-page .w-package-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.wedding-page .w-package-card li {
  padding: 0.45rem 0;
  color: #555;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.98rem;
  line-height: 1.5;
}

.wedding-page .w-package-card li::before {
  content: "💝";
  font-size: 1.1rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .wedding-page .w-hero {
    padding: 5rem 1.25rem;
  }

  .wedding-page .w-btn {
    display: flex;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .wedding-page .w-contact__facts {
    flex-direction: column;
    gap: 1.75rem;
  }

  .wedding-page .w-package-card--featured {
    transform: none;
  }
}
