/* Contact Page Custom Styles - Enhanced Modern Design */

/* Main Background Fix */
.contact-us-light {
  background: linear-gradient(180deg,
    rgba(248, 249, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(248, 249, 255, 0.6) 100%) !important;
  position: relative;
}

.contact-us-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.contact-us-light .container {
  position: relative;
  z-index: 1;
}

/* Form Container */
.form-style-light {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Category Selection Styles */
.category-selection {
  padding: 60px 0;
  text-align: center;
}

.category-main-heading {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
  font-family: 'Rubik', sans-serif;
}

.category-sub-heading {
  font-size: 24px;
  font-weight: 600;
  color: #061db7;
  margin-bottom: 20px;
  font-family: 'Rubik', sans-serif;
}

.category-description {
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.category-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(232, 234, 255, 0.8);
  border-radius: 20px;
  padding: 45px 35px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(6, 29, 183, 0.08);
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #061db7 0%, #6366f1 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.category-card:hover {
  border-color: #061db7;
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(6, 29, 183, 0.2);
  background: rgba(255, 255, 255, 1);
}

.category-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #061db7 0%, #0a2ae6 100%);
  border-radius: 16px;
  margin: 0 auto 24px;
  color: #fff;
}

.category-title {
  font-size: 20px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 12px;
  font-family: 'Rubik', sans-serif;
}

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

/* Form Progress Styles */
.category-back-link {
  margin-bottom: 30px;
}

.category-back-link a {
  color: #061db7;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

.category-back-link a:hover {
  color: #0a2ae6;
  text-decoration: underline;
}

.form-progress {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f0f2f5;
}

.progress-step {
  font-size: 16px;
  color: #999;
  font-weight: 500;
  position: relative;
  padding: 10px 20px;
}

.progress-step.completed {
  color: #28a745;
}

.progress-step.active {
  color: #061db7;
  font-weight: 600;
}

/* Selected Category Summary */
.selected-category-summary {
  text-align: center;
  margin-bottom: 50px;
  padding: 40px 30px;
  background: rgba(248, 249, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 2px solid rgba(232, 234, 255, 0.8);
}

.category-icon-large {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #061db7 0%, #0a2ae6 100%);
  border-radius: 20px;
  margin: 0 auto 20px;
  color: #fff;
}

.selected-category-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
  font-family: 'Rubik', sans-serif;
}

.selected-category-description {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Contact Form Improvements */
.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.input-group-meta {
  margin-bottom: 30px;
  text-align: left;
}

.input-group-meta label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 10px;
  font-family: 'Rubik', sans-serif;
}

.input-group-meta input,
.input-group-meta textarea {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid #e8eaed;
  border-radius: 10px;
  font-size: 15px;
  color: #1a1a2e;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
}

.input-group-meta input:focus,
.input-group-meta textarea:focus {
  outline: none;
  border-color: #061db7;
  box-shadow: 0 0 0 3px rgba(6, 29, 183, 0.1);
}

.input-group-meta input.error,
.input-group-meta textarea.error {
  border-color: #dc3545;
}

.input-group-meta textarea {
  min-height: 150px;
  resize: vertical;
}

.error-message {
  display: block;
  color: #dc3545;
  font-size: 13px;
  margin-top: 6px;
  font-weight: 500;
}

/* Submit Button */
.theme-btn-two {
  background: linear-gradient(135deg, #061db7 0%, #0a2ae6 100%);
  color: #fff;
  border: none;
  padding: 16px 48px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(6, 29, 183, 0.25);
  font-family: 'Rubik', sans-serif;
}

.theme-btn-two:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(6, 29, 183, 0.35);
}

.theme-btn-two:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Address Info Cards */
.address-info {
  text-align: center;
  padding: 50px 35px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 2px solid rgba(232, 234, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(6, 29, 183, 0.08);
}

.address-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #061db7 0%, #6366f1 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.address-info:hover::before {
  transform: scaleX(1);
}

.address-info:hover {
  border-color: #061db7;
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(6, 29, 183, 0.15);
  background: rgba(255, 255, 255, 1);
}

.address-info .icon {
  margin-bottom: 24px;
}

.address-info .title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 12px;
  font-family: 'Rubik', sans-serif;
}

.address-info p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.address-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.address-info ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f0f2f5;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.address-info ul li a:hover {
  background: #061db7;
  transform: translateY(-3px);
}

.address-info ul li a:hover img {
  filter: brightness(0) invert(1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .category-main-heading {
    font-size: 32px;
  }

  .category-sub-heading {
    font-size: 20px;
  }

  .category-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .selected-category-summary {
    padding: 30px 20px;
  }

  .selected-category-title {
    font-size: 22px;
  }
}
