/* ==============================
   Google Font Applied Globally
============================== */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  background: #f7f7f7;
  margin: 0;
  padding: 0;
}

/* ==============================
   Animations
============================== */
.fade-in {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeIn 1.2s forwards;
}

.zoom-in {
  opacity: 0;
  transform: scale(0.9);
  animation: zoomIn 1.3s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  to { opacity: 1; transform: scale(1); }
}

/* ==============================
   Intro Section
============================== */
.intro-section {
  max-width: 900px;
  margin: 50px auto 30px auto;
  text-align: center;
  padding: 0 20px;
}

.intro-section h1 {
  font-size: 32px;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: 700;
}

.intro-section p {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
}

/* ==============================
   Video Section
============================== */
.video-wrapper {
  max-width: 900px;
  margin: 40px auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s;
  height: auto;
}

.video-wrapper:hover {
  transform: scale(1.02);
}

.video-wrapper video {
  width: 100%;
  height: 400px; /* reduced height */
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

@media (max-width: 768px) {
  .video-wrapper video {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .video-wrapper video {
    height: 220px;
  }
}

/* ==============================
   Completed Work Images
============================== */
.completed-images {
  max-width: 900px;
  margin: 40px auto;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  padding: 0 20px;
}

.completed-images img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.completed-images img:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* ==============================
   Booking Container
============================== */
.booking-container {
  max-width: 900px;
  margin: 50px auto 70px auto;
  background: #fff;
  padding: 30px 40px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  animation: fadeIn 1.3s forwards;
  transition: transform 0.3s;
}

.booking-container:hover {
  transform: translateY(-3px);
}

.booking-container h2 {
  text-align: center;
  color: #007bff;
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 600;
}

.booking-container label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
  color: #333;
}

.booking-container input,
.booking-container textarea {
  width: 100%;
  padding: 14px 16px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  transition: border 0.3s, box-shadow 0.3s;
}

.booking-container input:focus,
.booking-container textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 6px rgba(0,123,255,0.3);
  outline: none;
}

.booking-container button {
  margin-top: 25px;
  width: 100%;
  background: #007bff;
  color: #fff;
  padding: 16px;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.booking-container button:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* ==============================
   Responsive Adjustments
============================== */
@media (max-width: 768px) {
  .intro-section h1 {
    font-size: 28px;
  }

  .booking-container {
    padding: 25px 20px;
  }

  .booking-container h2 {
    font-size: 24px;
  }

  .completed-images {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .intro-section h1 {
    font-size: 24px;
  }

  .booking-container h2 {
    font-size: 20px;
  }

  .booking-container input,
  .booking-container textarea {
    font-size: 15px;
    padding: 12px 14px;
  }

  .booking-container button {
    font-size: 16px;
    padding: 14px;
  }
}
