
.page-banner {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 3px solid #f4d03f;
}

.page-banner h2 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-family: 'Times New Roman', serif;
}

.contact-main-section {
  padding: 60px 20px;
  background: #f5f5f5;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}


.contact-two-column {
  display: flex;
  gap: 0;
  min-height: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.contact-info-section {
  flex: 1;
  background: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #b8941f 100%);
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-content {
  width: 100%;
  color: #333;
}

.office-title {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Times New Roman', serif;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.4);
}

.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #f4d03f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  border: 2px solid #fff;
  transition: all 0.3s ease;
}

.contact-icon i {
  font-size: 20px;
  color: #2c3e50;
  font-weight: 600;
}

.contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  font-family: Arial, sans-serif;
}

.contact-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #34495e;
  margin: 0;
  font-family: Arial, sans-serif;
}

.email-link {
  color: #34495e;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: #1e3c72;
  text-decoration: underline;
}


.enquiry-form-section {
  flex: 1;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #1e3c72 100%);
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.enquiry-form-content {
  width: 100%;
  color: #ffffff;
}

.enquire-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Times New Roman', serif;
}

.enquiry-form {
  width: 100%;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 15px;
  font-family: Arial, sans-serif;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
  color: #2c3e50;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
}

.submit-btn:hover {
  background: linear-gradient(135deg, #f8e5a1 0%, #e5c455 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 208, 63, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(244, 208, 63, 0.3);
}


.footer {
  background: #2c3e50;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  margin-top: 0;
}

.footer-content p {
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
}


@media (max-width: 992px) {
  .page-banner h2 {
    font-size: 2.8rem;
    letter-spacing: 1.5px;
  }

  .page-banner {
    padding: 50px 20px;
  }

  .contact-two-column {
    flex-direction: column;
  }

  .contact-info-section,
  .enquiry-form-section {
    padding: 40px 30px;
  }

  .office-title,
  .enquire-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .contact-item {
    margin-bottom: 25px;
    padding: 15px;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    padding: 8px;
  }

  .contact-icon i {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-banner h2 {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }

  .page-banner {
    padding: 40px 15px;
  }

  .contact-main-section {
    padding: 40px 15px;
  }

  .contact-info-section,
  .enquiry-form-section {
    padding: 30px 20px;
  }

  .office-title,
  .enquire-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    margin-right: 0;
    margin-bottom: 15px;
    padding: 10px;
  }

  .contact-icon i {
    font-size: 20px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 15px;
    font-size: 14px;
  }

  .submit-btn {
    padding: 14px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .page-banner h2 {
    font-size: 1.8rem;
    letter-spacing: 0.5px;
  }

  .page-banner {
    padding: 30px 10px;
  }

  .contact-main-section {
    padding: 30px 10px;
  }

  .contact-info-section,
  .enquiry-form-section {
    padding: 25px 15px;
  }

  .otp-fields {
    flex-direction: column;
    gap: 15px;
  }

  .office-title,
  .enquire-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .contact-item {
    padding: 15px 10px;
    margin-bottom: 20px;
  }

  .contact-text h4 {
    font-size: 16px;
  }

  .contact-text p {
    font-size: 14px;
  }

  .form-group label {
    font-size: 14px;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 13px;
  }

  .submit-btn {
    padding: 12px;
    font-size: 14px;
  }
}

.otp-section {
  margin-top: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: slideIn 0.3s ease-out;
}

.otp-fields {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.otp-section .form-group {
  margin-bottom: 0;
  flex: 1;
}

.otp-section label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  font-family: Arial, sans-serif;
}

#mobileOtpInput,
#emailOtpInput {
  width: 100%;
  padding: 15px;
  border: 2px solid #e1e8ed;
  border-radius: 8px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  transition: all 0.3s ease;
  background: #ffffff;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 600;
  color: #2c3e50;
  pointer-events: auto;
  cursor: text;
  opacity: 1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

#mobileOtpInput:focus,
#emailOtpInput:focus {
  outline: none;
  border-color: #f4d03f;
  box-shadow: 0 0 0 3px rgba(244, 208, 63, 0.1);
}

.verify-btn {
  background: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #f4d03f 100%);
  color: #2c3e50;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.verify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.verify-btn:active {
  transform: translateY(0);
}

.verification-messages {
  margin-top: 20px;
  padding: 20px;
  border-radius: 8px;
  animation: slideIn 0.3s ease-out;
}

.verification-info {
  font-size: 15px;
  font-weight: 500;
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

.verification-success {
  color: #155724;
  background: #d4edda;
  border: 1px solid #c3e6cb;
}

.verification-error {
  color: #721c24;
  background: #f8d7da;
  border: 1px solid #f5c6cb;
}

.verification-info {
  color: #004085;
  background: #cce5ff;
  border: 1px solid #b8daff;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.verify-btn:disabled,
.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

#mobileOtpInput,
#emailOtpInput {
  user-select: none;
}

#mobileOtpInput::selection,
#emailOtpInput::selection {
  background: transparent;
}