/* ======= GLOBAL STYLES ======= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(90deg, rgba(26, 88, 93, 0.8) 0%, rgba(3, 154, 152, 0.8) 100%);
  color: #fff;
  overflow-x: hidden;
}

/* ======= HERO SECTION ======= */
.hero {
  text-align: center;
  padding: 100px 20px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}
.btn-primary {
  display: inline-block;
  background: #facc15;
  color: #1e293b;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 20px;
  transition: 0.3s ease;
}
.btn-primary:hover {
  background: #fff;
}

/* ======= QUICK CONTACT ======= */
.contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 60px auto;
  max-width: 1000px;
}
.info-card {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 20px;
  width: 200px;
  text-align: center;
  transition: transform 0.3s;
}
.info-card:hover {
  transform: translateY(-5px);
}
.info-card i {
  font-size: 24px;
  color: #facc15;
  margin-bottom: 8px;
}

/* ======= SOCIAL LINKS ======= */
.social-media {
  text-align: center;
  margin: 60px 0;
}
.social-icons a {
  color: #f8fafc;
  margin: 10px;
  font-size: 24px;
  transition: 0.3s;
}
.social-icons a:hover {
  color: #facc15;
}

/* ======= FAQ SECTION ======= */
.faq-section {
  max-width: 800px;
  margin: 60px auto;
}
.faq-item {
  margin: 15px 0;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  padding: 15px 20px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-answer {
  display: none;
  padding: 0 20px 15px;
  color: #e2e8f0;
}

/* ======= FINAL CTA ======= */
.final-cta {
  text-align: center;
  margin: 80px 0;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 768px) {
  .hero h1 { font-size: 1.5rem; }
  .info-card { width: 45%; }
  .faq-section {margin: 0 7px;}
}
@media (max-width: 500px) {
  .info-card { width: 100%; }
  .faq-section {margin: 0 7px;}
}
/* Main Container Form*/
.container {
    width: 100%;
    align-items: center;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}
.form-section {
  background: rgba(255,255,255,0.1);
  padding: 60px 20px;
  border-radius: 20px;
  max-width: 900px;
  margin: 50px auto;
  text-align: center;
}
/* Form Wrapper with modern styling */
.form-wrapper {
    background-color: #389c9a29;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h1 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
}

.form-header p {
    margin: 0;
    font-size: 16px;
    color: #d1d8d8;
}

/* Input Group */
.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #34495e;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #bdc3c7;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.input-group input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

/* Submit Button */
button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background-color: #1d8585e9;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

button:active {
    background-color: #2471a3;
    transform: translateY(0);
}

button:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}


/* Response Message Area */
.message-area {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none; /* Hidden by default */
}

.message-area.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.message-area.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}