* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: 
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url("./contact-image/ct-angel-contact-background-image6.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

/* MAIN WRAPPER */
.wrapper {
  display: flex;
  width: 90%;
  max-width: 1000px;
  gap: 30px;
}

/* LEFT SIDE */
.info-section {
  flex: 1;
  padding: 30px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.084);
  border: 1px solid rgba(255,255,255,0.2);
}

.info-section h1 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.info-section p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.8);
}

.info-section ul {
  list-style: none;
  margin-bottom: 15px;
}

.info-section li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.note {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* RIGHT SIDE */
.form-section {
  flex: 1;
  padding: 30px;
  border-radius: 12px;
  background: 
    linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)),
    url("./contact-image/ct-angel-contact-background-image2.jpg");
  background-size: cover;
  border: 1px solid rgba(255,255,255,0.2);
}

/* FORM */
.form h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  outline: none;
  background: rgba(2, 107, 255, 0.15);
  color: #fff;
}

input:focus, textarea:focus {
  border: 1px solid #22c55e;
}

input::placeholder, textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

textarea {
  resize: none;
  height: 90px;
}

button {
  width: 100%;
  padding: 12px;
  background: #22c55e;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
}

button:hover {
  background: #16a34a;
}

/* NAV */
nav.extra-info {
  margin-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 20px;
  border-radius: 20px;
}

nav.extra-info a {
  color: #22c55e;
  text-decoration: none;
}

nav.extra-info a:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .wrapper {
    flex-direction: column;
  }

  .info-section {
    order: 2;
  }

  .form-section {
    order: 1;
  }
}

.whatsapp-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #25D366;
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  margin-top: 20px;
  transition: 0.3s ease;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}