/*------------------- Contact Us Light --------------*/
.contact-us-light {
    background: linear-gradient(45deg, #f5f2ff, #edf5ff);
    position: relative;
    z-index: 1;
  }
  
  .contact-us-light:before {
    content: url(../img/shape/15.svg);
    position: absolute;
    left: 0;
    bottom: -140px;
  }
  
  .contact-us-light [class*="bubble"] {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
  }
  
  @keyframes scale-up-one {
    0% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
    40% {
      -webkit-transform: scale(0.5);
      transform: scale(0.5);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  
  @-webkit-keyframes scale-up-two {
    0% {
      -webkit-transform: scale(0.5);
      transform: scale(0.5);
    }
    40% {
      -webkit-transform: scale(0.8);
      transform: scale(0.8);
    }
    100% {
      -webkit-transform: scale(0.5);
      transform: scale(0.5);
    }
  }
  
  .contact-us-light .bubble-one {
    width: 30px;
    height: 30px;
    background: #ffdfdf;
    left: 39%;
    top: -15px;
    z-index: 2;
    animation: scale-up-one 4s infinite linear;
  }
  
  .contact-us-light .bubble-two {
    width: 7px;
    height: 7px;
    background: #51fcff;
    top: 14%;
    right: 8%;
    animation: scale-up-three 4s infinite linear;
  }
  
  .contact-us-light .bubble-three {
    width: 8px;
    height: 8px;
    background: #6aee90;
    top: 32%;
    left: 44%;
    animation: scale-up-three 4s infinite linear;
  }
  
  .contact-us-light .bubble-four {
    width: 8px;
    height: 8px;
    background: #ffcd8b;
    left: 11%;
    top: 15%;
    animation: scale-up-three 4s infinite linear;
  }
  
  .contact-us-light .address-info {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .contact-us-light .address-info .icon {
    height: 82px;
  }
  
  .contact-us-light .address-info .icon img {
    margin: 0 auto;
    max-height: 100%;
  }
  
  .contact-us-light .address-info .title {
    font-size: 18px;
    color: #8e8e8e;
    padding: 30px 0 5px;
  }
  
  .contact-us-light .address-info p {
    font-size: 24px;
    line-height: 1.45em;
    color: #000;
  }
  
  .contact-us-light .address-info ul li a {
    font-size: 22px;
    margin: 5px 15px;
    color: rgba(0, 0, 0, 0.52);
    transition: all 0.2s ease-in-out;
  }
  
  .contact-us-light .address-info ul li a:hover {
    color: var(--blue-dark);
  }
  
  .form-style-light {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 10px 30px rgba(14, 49, 42, 0.05);
    padding: 100px 100px 95px;
    margin-top: 90px;
  }
  
  .form-style-light #contact-form .input-group-meta {
    height: 55px;
    position: relative;
  }
  
  .form-style-light #contact-form .input-group-meta.lg {
    height: 220px;
  }
  
  .form-style-light #contact-form .input-group-meta input {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    font-size: 16px;
    border: solid 1px #d6d6d6;
    padding: 0 52px 0 20px;
    color: var(--blue-dark);
    background: transparent;
    font-family: "Rubik", sans-serif;
  }
  
  .form-style-light #contact-form .input-group-meta textarea {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    font-size: 16px;
    color: var(--heading);
    border: solid 1px #d6d6d6;
    resize: none;
    padding: 20px;
    font-family: "Rubik", sans-serif;
  }
  
  .form-style-light #contact-form .input-group-meta input:focus {
    border-color: var(--blue-dark);
  }
  
  .form-style-light #contact-form .input-group-meta label {
    font-size: 16px;
    padding: 0 6px;
    font-weight: normal;
    position: absolute;
    left: 20px;
    line-height: 10px;
    top: -5px;
    z-index: 1;
    background: #fff;
  }
  
  .form-style-light #contact-form .input-group-meta input::placeholder {
    color: #999;
    font-size: 16px;
    font-weight: 500;
  }
  
  .form-style-light #contact-form .input-group-meta textarea::placeholder {
    color: #999;
    font-size: 16px;
    font-weight: 500;
  }
  
  .form-style-light .input-group-meta .placeholder_icon {
    position: absolute;
    line-height: 55px;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50px;
    text-align: center;
    z-index: 1;
    color: rgba(0, 0, 0, 0.54);
    font-size: 17px;
    cursor: pointer;
  }
  
  .form-style-light .input-group-meta .placeholder_icon img {
    position: relative;
    top: 50%;
    margin: 0 auto;
    transform: translateY(-50%);
    transition: all 0.2s ease-in-out;
  }
  
  .form-style-light #contact-form .input-group-meta .valid-sign {
    opacity: 1;
    visibility: visible;
  }
  
  .form-style-light #contact-form .input-group-meta input:valid + .valid-sign {
    opacity: 0;
    visibility: hidden;
  }
  
  #contact-form .form-group .help-block {
    position: absolute;
    left: 0;
    bottom: -24px;
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    padding: 0 15px;
    border-radius: 3px;
    background: #dc3545;
    box-shadow: 0px 10px 25px 0px rgba(123, 147, 171, 0.15);
  }
  
  #contact-form .form-group .help-block li {
    position: relative;
  }
  
  #contact-form .form-group .help-block li:before {
    content: "";
    font-family: "font-awesome";
    position: absolute;
    top: -12px;
    left: 0;
    color: #dc3545;
  }
  
  #contact-form .theme-btn-two {
    font-size: 18px;
    color: #fff;
    line-height: 48px;
    border: 2px solid var(--blue-dark);
    background: var(--blue-dark);
    padding: 0 42px;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
    font-weight: 600;
  }
  
  #contact-form .theme-btn-two:hover {
    background: transparent;
    color: var(--blue-dark);
  }
  
  @media (max-width: 991px) {
    .form-style-light {
      padding: 50px 20px 35px;
    }
  }

/* Contact Form Notification Modal Styles */
.contact-form .notification-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  z-index: 9999;
  background: linear-gradient(135deg, #fff 80%, #f7faff 100%);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 16, 247, 0.10), 0 2px 16px rgba(0,0,0,0.08);
  padding: 36px 36px 28px 36px;
  min-width: 340px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: contactFormPopIn 0.32s cubic-bezier(0.4,0,0.2,1);
  right: auto !important;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: 5px solid #0070f3;
  border-bottom: 1.5px solid #eaeaea;
}

.contact-form .notification-modal.success {
  border-top: 5px solid #28a745;
}

.contact-form .notification-modal.error {
  border-top: 5px solid #dc3545;
}

.contact-form .notification-modal.warning {
  border-top: 5px solid #ffc107;
}

.contact-form .notification-modal .notification-content {
  display: flex;
  align-items: center;
  width: 100%;
  flex-wrap: nowrap;
  min-width: 0;
}

.contact-form .notification-modal .icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form .notification-modal.success .icon { background: #eafaf1; color: #28a745; }
.contact-form .notification-modal.error .icon { background: #fff0f0; color: #dc3545; }
.contact-form .notification-modal.warning .icon { background: #fffbe6; color: #ffc107; }

.contact-form .notification-modal .message {
  flex: 1 1 0%;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 17px;
  color: #222;
  font-family: 'Rubik', 'Segoe UI', Arial, sans-serif;
  line-height: 1.7;
  font-weight: 500;
  margin-top: 2px;
}

.contact-form .notification-modal .close-button {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  margin-left: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form .notification-modal .close-button:hover {
  background: #eaeaea;
  color: #222;
}

@keyframes contactFormPopIn {
  0% { opacity: 0; transform: translate(-50%, -60%) scale(0.95) !important; }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1) !important; }
}

@media (max-width: 600px) {
  .contact-form .notification-modal {
    min-width: 90vw;
    max-width: 95vw;
    padding: 20px 10px 16px 16px;
  }
  .contact-form .notification-modal .message {
    font-size: 15px;
  }
  .contact-form .notification-modal .icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
    margin-right: 12px;
  }
  .contact-form .notification-modal .close-button {
    width: 28px;
    height: 28px;
    font-size: 16px;
    margin-left: 8px;
  }
}

/* Category Selection Styles - Only adds new styles without modifying existing ones */
.category-selection {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px 0;
}

.category-main-heading {
  font-size: 36px;
  font-weight: 700;
  color: #3751FF; /* Blue color matching mockup */
  margin-bottom: 10px;
  font-family: "Rubik", sans-serif;
}

.category-sub-heading {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 500;
  font-family: "Rubik", sans-serif;
}

.category-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.category-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 40px auto;
  max-width: 1200px;
}

.category-card {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  padding: 30px 25px;
  width: 300px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #3751FF;
}

.category-title {
  font-size: 20px;
  font-weight: 600;
  color: #3751FF;
  margin-bottom: 15px;
  font-family: "Rubik", sans-serif;
}

.category-text {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}

.category-back-link {
  margin-bottom: 30px;
}

.category-back-link a {
  color: #3751FF;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: "Rubik", sans-serif;
}

.category-back-link a:hover {
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 991px) {
  .category-cards {
    gap: 20px;
  }
  
  .category-card {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .category-main-heading {
    font-size: 30px;
  }
  
  .category-sub-heading {
    font-size: 22px;
  }
  
  .category-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .category-card {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .category-main-heading {
    font-size: 26px;
  }
  
  .category-sub-heading {
    font-size: 20px;
  }
  
  .category-description {
    font-size: 14px;
  }
}

/* Form Progress Indicator */
.form-progress {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 20px;
}

.progress-step {
  position: relative;
  padding: 10px 20px;
  background: #f5f5f5;
  border-radius: 20px;
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.progress-step.completed {
  background: #e3f2fd;
  color: #1976d2;
}

.progress-step.active {
  background: #1976d2;
  color: white;
}

/* Form Validation Styles */
.input-group-meta input.error,
.input-group-meta textarea.error {
  border-color: #dc3545;
  background-color: #fff8f8;
}

.error-message {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

/* Category Icon Styles */
.category-icon {
  width: 48px;
  height: 48px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: #3751FF;
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  background: #3751FF;
  color: white;
  transform: scale(1.1);
}

/* Loading State Styles */
.theme-btn-two:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.theme-btn-two:disabled:hover {
  background: var(--blue-dark);
  color: #fff;
}

/* Enhanced Category Card Styles */
.category-card {
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #3751FF;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.category-card:hover::before {
  transform: scaleX(1);
}

/* Back Link Enhancement */
.category-back-link {
  margin-bottom: 20px;
}

.category-back-link a {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  transition: all 0.2s ease;
}

.category-back-link a:hover {
  transform: translateX(-5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .form-progress {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .progress-step {
    width: 100%;
    text-align: center;
  }
  
  .category-icon {
    width: 40px;
    height: 40px;
  }
}

/* Selected Category Summary Styles */
.contact-form .selected-category-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f7faff;
  border-radius: 14px;
  padding: 28px 18px 18px 18px;
  margin-bottom: 32px;
  box-shadow: 0 2px 12px rgba(55, 81, 255, 0.04);
  border: 1.5px solid #e3eafd;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form .category-icon-large {
  width: 56px;
  height: 56px;
  background: #e3eafd;
  color: #3751FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(55, 81, 255, 0.08);
}

.contact-form .selected-category-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
  text-align: center;
  font-family: "Rubik", sans-serif;
}

.contact-form .selected-category-description {
  font-size: 1rem;
  color: #555;
  text-align: center;
  margin-bottom: 0;
  font-family: "Rubik", sans-serif;
}

@media (max-width: 600px) {
  .contact-form .selected-category-summary {
    padding: 18px 6px 12px 6px;
    max-width: 98vw;
  }
  .contact-form .category-icon-large {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }
  .contact-form .selected-category-title {
    font-size: 1.1rem;
  }
  .contact-form .selected-category-description {
    font-size: 0.95rem;
  }
}

/* Contact Form Submitting Modal Styles */
.contact-form-modal-backdrop {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(247, 250, 255, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.contact-form-modal-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 16, 247, 0.10), 0 2px 16px rgba(0,0,0,0.08);
  padding: 40px 36px 32px 36px;
  min-width: 320px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 5px solid #3751FF;
  border-bottom: 1.5px solid #eaeaea;
  position: relative;
}

.contact-form-modal-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #e3eafd;
  border-top: 4px solid #3751FF;
  border-radius: 50%;
  animation: contact-form-spin 1s linear infinite;
  margin-bottom: 24px;
}

@keyframes contact-form-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.contact-form-modal-message {
  font-size: 1.15rem;
  color: #222;
  font-family: 'Rubik', 'Segoe UI', Arial, sans-serif;
  text-align: center;
  margin-bottom: 12px;
  font-weight: 500;
}

.contact-form-modal-close {
  margin-top: 10px;
  padding: 8px 24px;
  background: #3751FF;
  color: #fff;
  border: none;
  border-radius: 22px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form-modal-close:hover {
  background: #2233aa;
}

@media (max-width: 600px) {
  .contact-form-modal-card {
    min-width: 90vw;
    padding: 24px 8px 18px 8px;
  }
  .contact-form-modal-message {
    font-size: 1rem;
  }
  .contact-form-modal-spinner {
    width: 36px;
    height: 36px;
    margin-bottom: 16px;
  }
}