/* Minimal Breadcrumb for Contact Page */
.breadcrumb-minimal .page-heading {
  padding: 150px 0 60px !important;
}

.breadcrumb-minimal .page-heading h1 {
  font-size: 48px !important;
  margin-bottom: 10px;
}

/* Animated Dots Background for Breadcrumb */
.breadcrumb-wrapper {
  position: relative;
}

.breadcrumb-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle, rgba(255, 255, 255, 0.15) 2px, transparent 2px),
    radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px, 30px 30px;
  background-position: 0 0, 25px 25px;
  animation: dotMove 20s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.breadcrumb-wrapper .container {
  position: relative;
  z-index: 2;
}

@keyframes dotMove {
  0% {
    background-position: 0 0, 25px 25px;
  }
  100% {
    background-position: 50px 50px, 75px 75px;
  }
}

/* Alternative floating dots animation */
.breadcrumb-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 3px, transparent 3px);
  background-size: 80px 80px;
  background-position: 40px 40px;
  animation: dotFloat 15s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}

@keyframes dotFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.5;
  }
}

@media (max-width: 1199px) {
  .breadcrumb-minimal .page-heading {
    padding: 130px 0 50px !important;
  }

  .breadcrumb-minimal .page-heading h1 {
    font-size: 42px !important;
  }
}

@media (max-width: 991px) {
  .breadcrumb-minimal .page-heading {
    padding: 120px 0 45px !important;
  }

  .breadcrumb-minimal .page-heading h1 {
    font-size: 38px !important;
  }
}

@media (max-width: 767px) {
  .breadcrumb-minimal .page-heading {
    padding: 110px 0 40px !important;
  }

  .breadcrumb-minimal .page-heading h1 {
    font-size: 34px !important;
  }
}

@media (max-width: 575px) {
  .breadcrumb-minimal .page-heading {
    padding: 100px 20px 35px !important;
  }

  .breadcrumb-minimal .page-heading h1 {
    font-size: 30px !important;
  }
}

/* Contact Form Section */
.contact-form-section {
  position: relative;
}

.contact-form-wrapper {
  margin-top: 50px;
}

/* Contact Info Box */
.contact-info-box {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-info-box h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.contact-info-box > p {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Contact Methods */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 30px;
}

.contact-method-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-method-item:hover {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transform: translateX(5px);
}

.contact-method-item .icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--theme-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.contact-method-item .content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.contact-method-item .content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.contact-method-item .content p a {
  color: var(--theme-color);
  text-decoration: none;
  font-weight: 600;
}

.contact-method-item .content p a:hover {
  text-decoration: underline;
}

.contact-method-item .content .hours {
  font-size: 13px;
  color: #999;
  display: block;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: gap 0.3s ease;
}

.contact-link:hover {
  gap: 12px;
}

/* Contact Social */
.contact-social {
  padding-top: 30px;
  border-top: 1px solid #e5e5e5;
}

.contact-social h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 8px;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: var(--theme-color);
  color: #fff;
  transform: translateY(-3px);
}

/* Contact Form Box */
.contact-form-box {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

/* Form Type Tabs */
.form-type-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  border-bottom: 2px solid #f0f0f0;
}

.tab-btn {
  flex: 1;
  padding: 15px 20px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: #666;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: -2px;
}

.tab-btn i {
  font-size: 18px;
}

.tab-btn:hover {
  color: var(--theme-color);
}

.tab-btn.active {
  color: var(--theme-color);
  border-bottom-color: var(--theme-color);
}

/* Contact Form */
.contact-form .form-group {
  margin-bottom: 0;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.contact-form .form-control {
  width: 100%;
  padding: 12px 18px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
  background: #fff;
}

.contact-form .form-control:focus {
  outline: none;
  border-color: var(--theme-color);
  box-shadow: 0 0 0 3px rgba(var(--theme-color-rgb), 0.1);
}

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

.contact-form select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
  background-color: #fff;
}

.contact-form select.form-control option {
  background: #fff;
  color: #333;
}

.contact-form .nice-select {
  align-items: center;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  display: flex;
  float: none;
  min-height: 48px;
  padding: 12px 40px 12px 18px;
  width: 100%;
}

.contact-form .nice-select:focus,
.contact-form .nice-select:hover,
.contact-form .nice-select.open {
  border-color: var(--theme-color);
}

.contact-form .nice-select::after {
  border-bottom: 2px solid #666;
  border-right: 2px solid #666;
  right: 16px;
  top: 50%;
}

.contact-form .nice-select .current {
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

.contact-form .nice-select .list {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  left: 0;
  margin-top: 8px;
  max-height: 320px;
  overflow-y: auto;
  right: 0;
  width: 100%;
}

.contact-form .nice-select .option {
  background: #fff;
  color: #555;
  font-size: 14px;
  min-height: auto;
  padding: 12px 18px;
  border-bottom: 1px solid #f2f2f2;
}
.contact-form .nice-select .option:last-child {
  border-bottom: none;
}

.contact-form .nice-select .option:hover,
.contact-form .nice-select .option:focus,
.contact-form .nice-select .option.selected.focus,
.contact-form .nice-select .option.selected {
  background: #f8f9fa;
  color: #333;
}

.contact-form .form-check {
  margin-bottom: 20px;
}

.contact-form .form-check-input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
}

.contact-form .form-check-label {
  font-size: 14px;
  color: #666;
  cursor: pointer;
  margin-left: 8px;
}

.contact-form .form-text {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: #999;
}

.contact-form input[type="file"] {
  padding: 10px;
  cursor: pointer;
}

.contact-form .theme-btn {
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-info-box,
  .contact-form-box {
    padding: 30px;
  }

  .contact-method-item {
    padding: 15px;
  }

  .form-type-tabs {
    flex-direction: column;
    gap: 10px;
  }

  .tab-btn {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .contact-info-box,
  .contact-form-box {
    padding: 25px;
  }

  .contact-info-box h3 {
    font-size: 24px;
  }

  .contact-method-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-method-item .icon {
    margin: 0 auto;
  }

  .social-icons {
    justify-content: center;
  }

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