@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: url('menu.jpeg') no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px;
}

body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}

.contact-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 20px 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
  max-width: 400px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  max-height: 85vh;
  overflow-y: auto;
}

.contact-card::-webkit-scrollbar {
  width: 4px;
}
.contact-card::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.logo-circle {
  width: 32px;
  height: 32px;
  background: #FF6B35;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: white;
}

h2 {
  font-size: 20px;
  font-weight: 600;
  color: white;
  text-align: center;
  margin-bottom: 4px;
}

.subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 14px;
}

.input-group {
  margin-bottom: 10px;
}

.input-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: white;
  margin-bottom: 6px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  resize: none;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  border-color: #FFD166;
  background: rgba(255, 255, 255, 0.3);
}

.contact-btn {
  width: 100%;
  padding: 11px;
  background: linear-gradient(135deg, #FF6B35, #E63946);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 6px;
  font-family: 'Poppins', sans-serif;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.contact-btn:active {
  transform: translateY(0px);
}

.contact-info {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info h3 {
  font-size: 14px;
  font-weight: 600;
  color: #FFD166;
  margin-bottom: 8px;
  text-align: center;
}

.contact-info p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
  text-align: center;
}

.home-btn {
  display: block;
  width: 100%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 14px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  text-decoration: none;
}

.home-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}