/* Support Page Styles */
.support-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.support-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>')
    repeat;
  opacity: 0.1;
}

.support-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.support-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.support-hero-icon {
  font-size: 4rem;
  color: #c9a96e;
  margin-bottom: 30px;
  display: block;
}

.support-hero-content p {
  font-size: 1.3rem;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
}

.support-form-section {
  padding: 80px 0;
  background: #f8f9fa;
  min-height: 100vh;
}

.support-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
  align-items: start;
}

.support-form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
}

.form-header {
  text-align: center;
  margin-bottom: 50px;
}

.form-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.form-header p {
  color: #666;
  font-size: 1.1rem;
}

.support-form {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

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

.form-group label {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.required {
  color: #dc3545;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px 20px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c9a96e;
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* Problem Categories */
.problem-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.problem-category {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 25px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}

.problem-category:hover {
  border-color: #c9a96e;
  box-shadow: 0 5px 20px rgba(201, 169, 110, 0.1);
}

.problem-category h4 {
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.problem-category h4::before {
  content: "";
  width: 4px;
  height: 20px;
  background: #c9a96e;
  border-radius: 2px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 12px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.checkbox-label:hover {
  background: #ffffff;
}

.checkbox-label input[type="radio"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 50%;
  margin-left: 12px;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-label input[type="radio"]:checked + .checkmark {
  border-color: #c9a96e;
  background: #c9a96e;
}

.checkbox-label input[type="radio"]:checked + .checkmark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
}

/* Time Options */
.time-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 15px;
}

.time-option {
  cursor: pointer;
}

.time-option input[type="radio"] {
  display: none;
}

.time-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 20px;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  transition: all 0.3s ease;
  background: #ffffff;
  text-align: center;
}

.time-label i {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #c9a96e;
}

.time-option input[type="radio"]:checked + .time-label {
  border-color: #c9a96e;
  background: rgba(201, 169, 110, 0.1);
  color: #c9a96e;
  font-weight: 600;
}

/* Submit Button */
.form-submit {
  margin-top: 30px;
  text-align: center;
}

.submit-btn {
  background: linear-gradient(135deg, #c9a96e 0%, #b8956a 100%);
  color: #ffffff;
  border: none;
  padding: 18px 50px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(201, 169, 110, 0.4);
}

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

/* Contact Info Sidebar */
.contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: sticky;
  top: 120px;
}

.contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-header i {
  font-size: 1.5rem;
  color: #c9a96e;
}

.contact-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.contact-details p {
  margin-bottom: 8px;
  color: #666;
}

.phone-number {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  direction: ltr;
  text-align: right;
}

.available-time,
.response-time {
  font-size: 0.9rem;
  color: #999;
}

.chat-btn {
  background: #c9a96e;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.chat-btn:hover {
  background: #b8956a;
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .support-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info-sidebar {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    display: grid;
    position: static;
  }
}

@media (max-width: 768px) {
  .support-hero-content h1 {
    font-size: 2.5rem;
  }

  .support-form-wrapper {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .time-options {
    grid-template-columns: 1fr;
  }

  .problem-categories {
    grid-template-columns: 1fr;
  }

  .contact-info-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .support-hero {
    padding: 100px 0 60px;
  }

  .support-hero-content h1 {
    font-size: 2rem;
  }

  .support-hero-icon {
    font-size: 3rem;
  }

  .form-header h2 {
    font-size: 2rem;
  }
}
/* Checkbox styles update */
.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-label .checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 4px;
  margin-left: 12px;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  border-color: #c9a96e;
  background: #c9a96e;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-weight: bold;
  font-size: 12px;
}
