:root {
  --primary-color: #4AB8E8;
  --primary-dark: #006FB9;
  --secondary-color: #f0f4f8;
  --text-color: #333;
  --text-muted: #6c757d;
  --border-color: #dee2e6;
  --bg-color-light: #f8f9fa;
  --bg-color-white: #ffffff;
  --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --input-border-radius: 8px;
  --button-border-radius: 12px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color-light);
  color: var(--text-color);
  line-height: 1.6;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.main-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.app-header {
  text-align: center;
  margin-bottom: 2rem;
}

.logo-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.company-logo {
  max-width: 80px;
  height: auto;
  border-radius: 50%;
  box-shadow: var(--card-shadow);
}

.app-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0;
}

.app-header .subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0;
}

.content-card {
  background-color: var(--bg-color-white);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.application-form-section {
  padding-right: 2rem;
  border-right: 1px solid var(--border-color);
}

.summary-section {
  display: flex;
  flex-direction: column;
}

.info-note {
  background-color: #e3f2fd;
  border-left: 5px solid var(--primary-color);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.info-note h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.info-note p {
  font-size: 0.9rem;
  color: #495057;
}

.form-section-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select,
.select2-container--default .select2-selection--single {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--input-border-radius);
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
  background-color: #fff;
}

input:focus,
textarea:focus,
select:focus,
.select2-container--default.select2-container--focus .select2-selection--single {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(74, 184, 232, 0.25);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.input-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.terms-container {
  margin-top: 2rem;
  background-color: var(--bg-color-light);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
}

.terms-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  gap: 1rem;
}

.terms-label input[type="checkbox"] {
  margin-top: 5px;
  width: 20px;
  height: 20px;
}

.terms-text {
  font-size: 0.9rem;
  color: var(--text-color);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: var(--button-border-radius);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover:not(:disabled) {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-primary:disabled {
  background-color: #b0d8f0;
  border-color: #b0d8f0;
  cursor: not-allowed;
}

.muted-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.summary-box {
  background-color: var(--bg-color-light);
  border-radius: 12px;
  padding: 1.5rem;
  height: fit-content;
}

.summary-box h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.summary-details {
  border-top: 1px solid var(--border-color);
  margin-top: 1rem;
  padding-top: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.summary-row span {
  font-weight: 600;
  color: var(--primary-dark);
}

.summary-row.total {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 1.25rem;
}

.summary-row.total span {
  color: var(--primary-dark);
}

.additional-info {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-color);
}

.contact-footer {
  text-align: center;
}

.contact-card {
  background-color: var(--bg-color-white);
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  padding: 2rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/*.contact-image {*/
/*  width: 150px;*/
/*  height: 120px;*/
  /*object-fit: cover;*/
  
/*  border: 4px solid var(--primary-color);*/
/*}*/

.contact-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.contact-person {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  background-color: #25D366;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.whatsapp-link:hover {
  background-color: #128C7E;
  color: #fff;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* Modal Styling */
.modal-content {
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border-bottom: none;
  padding: 1rem 1.25rem;
}

.modal-header h5 {
  font-weight: 600;
}

.modal-body {
  padding: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-color);
  text-align: center;
  line-height: 1.5;
}

.payment-question {
  margin-bottom: 1rem;
}

.account-details-group, .account-details-box {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--bg-color-light);
  text-align: left;
}

.modal-footer {
  border-top: none;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
}

.btn-secondary {
  background-color: var(--bg-color-light);
  border-color: var(--border-color);
  color: var(--text-color);
  border-radius: var(--button-border-radius);
  font-weight: 600;
}


/* Responsive Design */
@media (max-width: 992px) {
  .content-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }
  
  .application-form-section {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  body {
    padding: 10px;
  }
  .app-header h1 {
    font-size: 1.5rem;
  }
  .company-logo {
    max-width: 60px;
  }
  .content-card {
    padding: 1rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
}