/* Header */
.page-header {
  background: #fffbf5;
  padding: 80px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.header-wave {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: auto;
  color: #ffffff;
}

.page-header h1 {
  font-size: 56px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  color: #1a202c;
  font-weight: 800;
}

.page-header p {
  font-size: 22px;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Main Contact Content */
.contact-section {
  padding: 60px 0 100px;
  position: relative;
  /* overflow: hidden; Removed to show circles */
}

/* Decorations */
.decoration-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.circle-1 {
  width: 300px;
  height: 300px;
  background: rgba(255, 125, 5, 0.08);
  top: 50px;
  left: -100px;
}
.circle-2 {
  width: 300px;
  height: 300px;
  background: rgba(46, 196, 182, 0.12);
  bottom: -40px; /* Moved down to appear below content/FAQ area */
  right: -80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* Form Card */
.contact-card {
  background: white;
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.contact-card h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #1a202c;
}

.btn-full {
  width: 100%;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: #2d3748;
  font-size: 15px;
}

.form-input {
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  border: 2px solid var(--border);
  background: var(--input);
  color: #2d3748;
  font-size: 16px;
  font-family: inherit;
}

.form-textarea {
  width: 100%;
  padding: 16px;
  border-radius: 16px;
  border: 2px solid var(--border);
  background: var(--input);
  color: #2d3748;
  font-size: 16px;
  font-family: inherit;
  min-height: 150px;
  resize: none;
}

/* Info Side */
.info-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #1a202c;
}

.info-text {
  font-size: 18px;
  color: #718096;
  margin-bottom: 40px;
  max-width: 480px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e6fffa;
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: #2d3748;
}

.contact-details p {
  margin: 0;
  color: #718096;
  font-size: 16px;
}

.contact-details .highlight {
  color: var(--primary);
  font-weight: 700;
  margin-top: 4px;
}

.map-container {
  width: 100%;
  height: 250px;
  border-radius: 24px;
  overflow: hidden;
  margin-top: 24px;
  background: #edf2f7;
}

.map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FAQ Section */
.faq-section {
  background: #f7fafc;
  border-radius: 40px;
  padding: 80px;
  margin-top: 80px;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header p {
  color: #718096;
  max-width: 500px;
  margin: 0 auto;
}

.faq-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 16px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.faq-item {
  background: white;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.faq-question {
  font-weight: 700;
  font-size: 18px;
  color: #2d3748;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-question span {
  color: var(--primary);
}

.faq-answer {
  color: #718096;
  font-size: 16px;
  line-height: 1.6;
}

.footer-social-links {
  margin-top: 24px;
}

.footer-copyright {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 32px;
  text-align: center;
  color: #718096;
  font-size: 14px;
}

/* ============================================
   RESPONSIVE DESIGN - CONTACT US PAGE
   ============================================ */

/* Tablet (1023px and below) */
@media (max-width: 1023px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-section {
    padding: 60px;
  }
}

/* Mobile (767px and below) */
@media (max-width: 767px) {
  .page-header {
    padding: 50px 0 80px;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .page-header p {
    font-size: 18px;
  }

  .contact-section {
    padding: 40px 0 80px;
  }

  .contact-card {
    padding: 32px 24px;
    border-radius: 24px;
  }

  .contact-card h2 {
    font-size: 22px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .info-title {
    font-size: 28px;
  }

  .info-text {
    font-size: 16px;
  }

  .contact-methods {
    gap: 24px;
    margin-bottom: 32px;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
  }

  .contact-details h3 {
    font-size: 16px;
  }

  .contact-details p {
    font-size: 15px;
  }

  .map-container {
    height: 200px;
  }

  .faq-section {
    padding: 48px 24px;
    border-radius: 24px;
    margin-top: 60px;
  }

  .faq-header {
    margin-bottom: 40px;
  }

  .faq-header h2 {
    font-size: 28px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-item {
    padding: 24px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 15px;
  }
}

/* Small Mobile (639px and below) */
@media (max-width: 639px) {
  .page-header h1 {
    font-size: 32px;
  }

  .page-header p {
    font-size: 16px;
  }

  .contact-card {
    padding: 28px 20px;
  }

  .info-title {
    font-size: 26px;
  }

  .faq-header h2 {
    font-size: 26px;
  }

  .faq-item {
    padding: 20px;
  }
}

/* 4K Screens (3840px+) */
@media (min-width: 3840px) {
  .page-header h1 {
    font-size: 84px;
  }

  .page-header p {
    font-size: 32px;
  }

  .contact-grid {
    gap: 80px;
  }

  .contact-card {
    padding: 64px;
  }

  .info-title {
    font-size: 48px;
  }

  .faq-section {
    padding: 100px;
  }

  .faq-header h2 {
    font-size: 56px;
  }

  .faq-grid {
    gap: 40px;
  }
}

/* Success Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.success-modal {
  background: white;
  padding: 40px;
  border-radius: 32px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modal-overlay.active .success-modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: #cbd5e0;
  padding: 4px;
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--foreground);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #e6fffa;
  color: #2ec4b6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-icon iconify-icon {
  font-size: 40px;
}

.success-modal h3 {
  font-size: 24px;
  color: #1a202c;
  margin-bottom: 8px;
}

.success-modal p {
  color: #718096;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 32px;
}

.btn-start-new {
  width: 100%;
}

/* Error Modal Styling */
.error-icon {
  width: 80px;
  height: 80px;
  background: #fff5f5;
  color: #e53e3e; /* Red-600 */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.error-icon iconify-icon {
  font-size: 40px;
}
