/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #333;
}

/* HEADER */
.header {
 background: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874') no-repeat center/cover;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* PREMIUM OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(12px);
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.6),
    rgba(255,192,203,0.2)
  );
}

/* CONTENT BOX (GLASS EFFECT) */
.header-content {
  position: relative;
  text-align: center;
  color: white;
  top: 50%;
  transform: translateY(-50%);
  padding: 40px;
  border-radius: 20px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.2);

  box-shadow: 0 10px 40px rgba(0,0,0,0.3);

  animation: fadeUp 1.5s ease;
}

/* TITLE STYLE */
.title {
  font-size: 55px;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;

  background: linear-gradient(to right, #fff, #ffc0cb);
  -webkit-background-clip: text;
  color: transparent;
}

/* SUBTITLE */
.subtitle {
  font-size: 28px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

/* TAGLINE */
.tagline {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.85;
}

/* BUTTONS */
.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* BUTTON BASE */
.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  color: white;

  position: relative;
  overflow: hidden;

  transition: 0.4s;
}

/* ICON */
.btn i {
  font-size: 18px;
}

/* CALL BUTTON */
.call {
  background: linear-gradient(45deg, #ff6a6a, #ff3d3d);
}

/* WHATSAPP BUTTON */
.whatsapp {
  background: linear-gradient(45deg, #25d366, #0f9d58);
}

/* GLOW EFFECT */
.btn::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255,255,255,0.2);
  transition: 0.4s;
}

.btn:hover::before {
  width: 100%;
}

/* HOVER */
.btn:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* FLOATING ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .title {
    font-size: 32px;
  }

  .subtitle {
    font-size: 20px;
  }

  .header-content {
    padding: 20px;
  }
}

/* SERVICES */
/* SERVICES */
.services {
  padding: 70px 20px;
  text-align: center;
  background: linear-gradient(135deg, #fff5f7, #ffeef2);
}

.services h2 {
  font-size: 34px;
  margin-bottom: 40px;
}

/* GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* CARD */
.card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* IMAGE */
.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.5s;
}

/* CONTENT OVERLAY */
.card-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  color: white;

  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

/* TEXT */
.card h3 {
  margin-bottom: 5px;
}

.card p {
  font-size: 14px;
  opacity: 0.9;
}

/* HOVER EFFECT */
.card:hover img {
  transform: scale(1.1);
}

.card:hover {
  transform: translateY(-10px);
  transition: 0.4s;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* EXTRA GLOW */
.card::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: inset 0 0 0 0 rgba(255,255,255,0.2);
  transition: 0.4s;
}

.card:hover::after {
  box-shadow: inset 0 0 20px rgba(255,255,255,0.3);
}
/* WHY CHOOSE US */
.why {
  padding: 60px 20px;
  background: #fce4ec;
  text-align: center;
}

.why h2 {
  margin-bottom: 20px;
}

.why-box {
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* MAP */
/* LOCATION SECTION */
.location {
  padding: 80px 20px;
  text-align: center;
  background: #fff5f7;
}

.map-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.map-container iframe {
  width: 500px;
  height: 350px;
  border-radius: 20px;
}

.address-box {
  background: white;
  padding: 30px;
  border-radius: 20px;
}
/* BOOKING */
/* SECTION */
.booking {
  padding: 100px 20px;
  background: linear-gradient(135deg, #ffeef2, #fff5f7);
  display: flex;
  justify-content: center;
}

/* CONTAINER */
.booking-container {
  width: 100%;
  max-width: 500px;
  padding: 40px;
  border-radius: 25px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(15px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  animation: fadeIn 1s ease;
}

/* TITLE */
.booking-container h2 {
  text-align: center;
  margin-bottom: 30px;
}

/* FORM */
.booking form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FLOATING INPUT */
.input-box {
  position: relative;
}

.input-box input,
.input-box select,
.input-box textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: white;
  font-size: 14px;
}

/* LABEL */
.input-box label {
  position: absolute;
  left: 15px;
  top: 12px;
  color: #999;
  transition: 0.3s;
  pointer-events: none;
}

/* FOCUS EFFECT */
.input-box input:focus + label,
.input-box input:valid + label,
.input-box textarea:focus + label,
.input-box textarea:valid + label,
.input-box select:focus + label,
.input-box select:valid + label {
  top: -10px;
  left: 10px;
  font-size: 12px;
  color: #ff4d6d;
  background: white;
  padding: 0 5px;
}

/* TEXTAREA */
textarea {
  min-height: 100px;
  resize: none;
}

/* BUTTON */
.booking button {
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(45deg, #ff4d6d, #ff758f);
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.4s;
}

/* BUTTON HOVER */
.booking button:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255,77,109,0.5);
}

/* ANIMATION */
@keyframes fadeIn {
  from {opacity:0; transform:translateY(30px);}
  to {opacity:1; transform:translateY(0);}
}