/* ===========================
   VARIABLES
=========================== */
:root {
  --primary: #00308f;
  --accent: #ffcc00;
  --light-bg: #f5f7fa;
  --text: #333;
  --radius: 14px;
  --max-width: 980px;
}

/* ===========================
   GLOBAL
=========================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--light-bg);
  color: var(--text);
  overflow-x: hidden;
}

.container {
  max-width: var(--max-width);
  margin: auto;
  padding: 20px;
}

/* ===========================
   HEADER
=========================== */
header {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #00246b, var(--primary));
  color: white;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

header h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* ===========================
   FORM
=========================== */
form {
  background: white;
  padding: 35px;
  border-radius: var(--radius);
  margin-top: -40px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.12);
}

.form-group {
  margin-bottom: 20px;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

input, select {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  font-size: 1rem;
  background: #fafafa;
  transition: 0.2s;
}

input:focus, select:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 5px rgba(0,48,143,0.3);
}

button {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  background: #ffe066;
}

/* PHONE ROW */
.phone-row {
  display: flex;
  gap: 10px;
}

.phone-row select {
  width: 100px;
}

.phone-row input {
  flex: 1;
}

/* CHECKBOX */
.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.checkbox-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 4px;
}

.checkbox-wrap label {
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 500;
}

/* ===========================
   MODAL
=========================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  max-width: 400px;
  width: 90%;
  text-align: center;
}

.modal-content h2 {
  margin-bottom: 20px;
  color: var(--primary);
}

.modal-content select, .modal-content input {
  margin-bottom: 20px;
}

/* ===========================
   BENEFITS
=========================== */
.benefits {
  background: white;
  padding: 35px;
  border-radius: var(--radius);
  margin-top: 40px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.10);
}

.benefits h2 {
  text-align: center;
  margin-bottom: 25px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 1.08rem;
}

.benefit-icon {
  font-size: 1.6rem;
  margin-right: 10px;
  color: var(--primary);
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonial-box {
  background: white;
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-top: 20px;
}

/* ===========================
   FAQ
=========================== */
.faq-card {
  background: white;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-top: 20px;
}

/* ===========================
   FOOTER
=========================== */
.footer-text {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #555;
  margin-top: 20px;
}

/* ===========================
   WHATSAPP BUTTON
=========================== */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 15px 22px;
  border-radius: 40px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  z-index: 1001;
}

.whatsapp-btn img {
  width: 28px;
}

/* ===========================
   FADE-IN ANIMATION
=========================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.9s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
