*{
  margin: 0px;
  padding: 0px;
}
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: #f8f9fa;
  color: #212529;
}

/* Header */
.header {
  background: linear-gradient(90deg, #fd5c63, #ff9966);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  flex-wrap: wrap;
}

.header .logo {
  font-size: 22px;
  font-weight: bold;
  flex: 1;
}

.header .contact-buttons {
  display: flex;
  gap: 10px;
}

.header .contact-buttons a {
  background: #fff;
  color: #fd5c63;
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
}

.header .contact-buttons a i {
  margin-right: 6px;
}

@media (max-width: 600px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .header .contact-buttons {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

/* Hero */
.hero {
  text-align: center;
  padding: 50px 20px 30px;
  background: #fff3f5;
}

.hero h1,
.hero h2,
.hero h3,
.hero h4,
.hero h5,
.hero h6 {
  font-size: 26px;
  color: #e83e8c;
}

.hero p {
  font-size: 16px;
  max-width: 700px;
  margin: auto;
}

/* Footer */
.footer {
  background: #343a40;
  color: #fff;
  padding: 20px;
  text-align: center;
}

/* Info Box */
.info-box {
  max-width: 1100px;
  margin: 30px auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}

.info-box h2 {
  color: #e83e8c;
}

/* CTA Buttons */
.cta-buttons a {
  display: inline-block;
  margin: 10px 10px 20px 0;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.call-btn {
  background: #007bff;
}

.whatsapp-btn {
  background: #25d366;
}

/* Features List */
.features-list {
  list-style: none;
  padding-left: 0;
}

.features-list li {
  margin: 8px 0;
}

.features-list i {
  color: #28a745;
  margin-right: 8px;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

th,
td {
  border: 1px solid #ddd;
  padding: 10px;
}

thead {
  background-color: #fd5c63;
  color: #fff;
}

/* Listing Cards */
.listing-container {
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 20px;
}

.listing-card {
  display: flex;
  background: linear-gradient(to right, #fff8f5, #ffe5ec);
  margin-bottom: 25px;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.listing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(233, 30, 99, 0.25);
}

/* Image with 2:3 Aspect Ratio */
.listing-card img {
 width: 120px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-right: 20px;
  border: 3px solid #e83e8c;
}

.listing-card .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.listing-card .info h3 {
  font-size: 20px;
  color: #e83e8c;
  font-weight: 600;
  margin-bottom: 5px;
}

.listing-card .info p {
  font-size: 14px;
  line-height: 1.3;
  color: #5c2b2e;
  margin-bottom: 5px;
}

.listing-card .info .buttons a {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #e83e8c;
  color: #e83e8c;
  padding: 8px 16px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 30px;
  margin-right: 12px;
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.listing-card .info .buttons a:hover {
  background: linear-gradient(to right, #fd5c63, #ff9966);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 0, 102, 0.4);
}

.listing-card .info .buttons i {
  margin-right: 8px;
  font-size: 16px;
}

/* Local Area Tags */
.local-area-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  background: linear-gradient(to right, #fff8f5, #ffe5ec);
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.local-area-section h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #e83e8c;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.area-tags button {
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #e83e8c;
  color: #e83e8c;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  font-size: 14px;
}

.area-tags button:hover {
  background: linear-gradient(to right, #fd5c63, #ff9966);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 0, 102, 0.4);
}

/* FAQ Section */
.faq-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(to right, #fff8f5, #ffe5ec);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.faq-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #e83e8c;
}

.faq-card {
  background: white;
  border: 2px solid #ffe5ec;
  margin: 15px 0;
  padding: 20px 25px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(255, 92, 99, 0.1);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
  transform: rotateX(2deg) rotateY(2deg);
  box-shadow: 0 15px 25px rgba(255, 105, 135, 0.25);
}

.faq-question {
  font-size: 1.2rem;
  color: #e83e8c;
  font-weight: bold;
  position: relative;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  margin-top: 10px;
  color: #555;
  font-size: 0.98rem;
}

.faq-card.open .faq-answer {
  max-height: 300px;
}

.faq-card .icon {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  color: #ff5e78;
  transition: transform 0.3s ease;
}

.faq-card.open .icon {
  transform: rotate(45deg);
}

/* Story Slider */
.story-slider {
  overflow: hidden;
  width: 100%;
  background: linear-gradient(to right, #fff0f5, #ffe5ec);
  border-bottom: 2px solid #e83e8c;
  padding: 12px 0;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scrollSlider 60s linear infinite;
}

.slide {
  flex: 0 0 auto;
  width: 250px;
  margin: 0 15px;
  background: #fff;
  color: #e83e8c;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  padding: 10px 14px;
  border-radius: 30px;
  box-shadow: 0 4px 10px rgba(233, 30, 99, 0.15);
  white-space: nowrap;
}

@keyframes scrollSlider {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.slider-heading {
  text-align: center;
  padding: 20px 10px 10px;
  background: linear-gradient(to right, #fff8f5, #ffe5ec);
}

.slider-heading h2 {
  font-size: 22px;
  color: #e83e8c;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 1px rgba(255, 105, 180, 0.2);
}

/* Booking Steps */
.booking-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin: 30px 0;
}

.step {
  flex: 1 1 calc(20% - 20px);
  background: #f8f9fa;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.step h4 {
  font-size: 24px;
  background: #ff5722;
  color: #fff;
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  border-radius: 50%;
  line-height: 40px;
}

.step1 { border-top: 4px solid #d32f2f; }
.step2 { border-top: 4px solid #689f38; }
.step3 { border-top: 4px solid #7b1fa2; }
.step4 { border-top: 4px solid #0288d1; }
.step5 { border-top: 4px solid #f57c00; }

@media (max-width: 768px) {
  .booking-steps {
    flex-direction: column;
  }

  .step {
    flex: 1 1 100%;
  }
}
.mail {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.mail a {
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.mail a:hover {
  color: #007bff; /* Change to your preferred color */
  text-decoration: underline;
}

.mail i {
  margin-left: 8px;
  font-size: 20px; /* Adjust size as needed */
}
  