/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}
.lang-switch button {
  background: white;
  color: #a084dc;
  border: 2px solid #a084dc;
  padding: 5px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.btn-group {
  display: flex;
  justify-content: center;
}

.lang-switch button:hover {
  background: #a084dc;
  color: white;
}
/* BODY */
body {
  background: #f9f7fb;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 50px;
  align-items: center;
  background: white;
}

.navbar a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
}

.login-btn {
  background: #a084dc;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 10px;
}

/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
  background: linear-gradient(135deg, #f3e7ff, #e8f0ff);
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero-text p {
  margin-bottom: 20px;
}

/* SEARCH */
.search-box {
  display: flex;
  gap: 10px;
}

.search-box input {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.search-box button {
  background: #a084dc;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 10px;
}

/* HERO IMAGE */
.hero-img img {
  width: 350px;
  border-radius: 20px;
}

/* FEATURES */
.features {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 50px;
}

.card {
  background: white;
  padding: 25px;
  border-radius: 25px;
  width: 260px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* REVIEWS */
.reviews {
  text-align: center;
  padding: 50px;
}

.review-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.review {
  background: white;
  padding: 20px;
  border-radius: 20px;
  width: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

/* HOVER EFFECT */
.card:hover,
.review:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}
/* FORM PAGE */
.form-page {
  text-align: center;
  padding: 60px;
}

.form {
  display: flex;
  flex-direction: column;
  width: 300px;
  margin: auto;
  gap: 10px;
}

.form input,
.form textarea {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.form button {
  background: #a084dc;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 10px;
}
/* SEARCH CONTAINER */
.search-container {
  display: flex;
  gap: 10px;
  background: white;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  width: fit-content;
}

.search-container input {
  border: none;
  padding: 10px;
  border-radius: 10px;
  outline: none;
  background: #f5f5f5;
}

.search-container button {
  background: #a084dc;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
}
.form-page {
  padding: 40px;
  text-align: center;
}

iframe {
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
/* FULL PAGE BACKGROUND */
.form-page {
  min-height: 100vh;
  background: url("https://images.unsplash.com/photo-1503454537195-1dcabb73ffb9")
    no-repeat center/cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* DARK OVERLAY (makes it look premium) */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

/* CENTER CONTENT */
.form-container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 20px;
}

/* TITLE */
.form-container h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

/* TEXT */
.form-container p {
  margin-bottom: 30px;
  color: #eee;
}

/* FORM BOX */
.form-box {
  background: white;
  border-radius: 25px;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* GOOGLE FORM */
.form-box iframe {
  width: 100%;
  height: 700px;
  border: none;
  border-radius: 20px;
}

/* HOVER EFFECT */
.form-box:hover {
  transform: scale(1.01);
  transition: 0.3s;
}

/* MOBILE 📱 */
@media (max-width: 768px) {
  .form-container h1 {
    font-size: 26px;
  }

  .form-box iframe {
    height: 600px;
  }
}

/* 📱 MOBILE DESIGN */
@media (max-width: 768px) {
  /* NAVBAR */
  .navbar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* HERO SECTION */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .hero-img img {
    width: 250px;
    margin-top: 20px;
  }

  /* SEARCH BOX */
  .search-container {
    flex-direction: column;
    width: 100%;
  }

  .search-container input,
  .search-container button {
    width: 100%;
  }

  /* CARDS */
  .features {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  /* REVIEWS */
  .review-container {
    flex-direction: column;
    align-items: center;
  }

  .review {
    width: 90%;
  }

  /* FORM */
  .form-box iframe {
    height: 600px;
  }
}
