/* =====================================================
   MrX Robotics - SUPPORT PAGES STYLESHEET
   Contact Us, Help Center, Downloads, Forum, Warranty
   ===================================================== */

/* =====================================================
   CONTACT PAGE STYLES
   ===================================================== */

/* Support Hero (Contact Page) */
.support-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 140px 0 80px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.support-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.support-hero .section-container {
  position: relative;
  z-index: 1;
}

.support-hero .hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.support-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.support-hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Contact Options Section */
.contact-options {
  padding: 80px 0;
  background: #f8f9fa;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.option-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 25px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.option-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C8102E, #ff4757);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  border-color: #eee;
}

.option-card:hover::before {
  transform: scaleX(1);
}

.option-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.25rem;
  color: white;
  position: relative;
}

.option-icon::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px dashed rgba(200, 16, 46, 0.3);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.option-icon.sales { 
  background: linear-gradient(135deg, #C8102E, #ff4757);
  box-shadow: 0 10px 30px rgba(200, 16, 46, 0.3);
}

.option-icon.support { 
  background: linear-gradient(135deg, #0B3D91, #1e90ff);
  box-shadow: 0 10px 30px rgba(11, 61, 145, 0.3);
}

.option-icon.education { 
  background: linear-gradient(135deg, #228B22, #32cd32);
  box-shadow: 0 10px 30px rgba(34, 139, 34, 0.3);
}

.option-icon.competition { 
  background: linear-gradient(135deg, #8B0000, #C8102E);
  box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
}

.option-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a2e;
}

.option-card > p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.contact-details {
  margin-bottom: 20px;
}

.contact-details a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #1a1a2e;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 15px;
  margin: 8px 0;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.contact-details a:hover {
  background: #C8102E;
  color: white;
  transform: translateX(5px);
}

.contact-details a i {
  font-size: 1rem;
  width: 20px;
}

.option-card .hours {
  font-size: 0.85rem;
  color: #888;
  padding-top: 15px;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.option-card .hours i {
  color: #C8102E;
}

/* Contact Form Container */
.form-container {
  max-width: 900px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 15px;
}

.form-header p {
  color: #666;
  font-size: 1.1rem;
}

/* Contact Form Styles */
.contact-form {
  background: #f8f9fa;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.contact-form .form-group {
  margin-bottom: 0;
}

.contact-form .form-group.full-width {
  grid-column: 1 / -1;
  margin-bottom: 25px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #C8102E;
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form .checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: normal;
}

.contact-form .checkbox-label input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #C8102E;
  cursor: pointer;
}

.contact-form .checkbox-label span {
  color: #666;
  font-size: 0.95rem;
}

.contact-form .btn-primary {
  background: linear-gradient(135deg, #C8102E, #8B0000);
  color: white;
  padding: 18px 40px;
  border: none;
  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;
  width: 100%;
  justify-content: center;
}

.contact-form .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(200, 16, 46, 0.35);
}

/* Office Locations */
.office-locations {
  padding: 80px 0;
  background: white;
}

.locations-header {
  text-align: center;
  margin-bottom: 50px;
}

.locations-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 15px;
}

.locations-header p {
  color: #666;
  font-size: 1.1rem;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.location-card {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 40px 35px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #C8102E, #ff4757);
}

.location-card:hover {
  background: white;
  border-color: #eee;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.location-card .location-flag {
  font-size: 3rem;
  margin-bottom: 20px;
}

.location-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.location-card .location-type {
  color: #C8102E;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.location-card address {
  font-style: normal;
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.location-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1a1a2e;
  text-decoration: none;
  padding: 8px 0;
  font-size: 0.95rem;
  transition: all 0.3s;
}

.location-contact a:hover {
  color: #C8102E;
  transform: translateX(5px);
}

.location-contact a i {
  color: #C8102E;
  width: 20px;
}

/* Location Header & Info (alternate styles) */
.location-header {
  margin-bottom: 25px;
}

.location-header .location-flag {
  font-size: 3rem;
  display: block;
  margin-bottom: 15px;
}

.location-header h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
}

.location-info {
  margin-bottom: 25px;
}

.location-info p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.location-info p i {
  color: #C8102E;
  margin-top: 4px;
  width: 18px;
  flex-shrink: 0;
}

.location-card .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 2px solid #C8102E;
  color: #C8102E;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.location-card .btn-outline:hover {
  background: #C8102E;
  color: white;
}

/* Quick Links Section */
.quick-links-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.quick-link-card {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  text-decoration: none;
  transition: all 0.4s ease;
}

.quick-link-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: #C8102E;
  transform: translateY(-8px);
}

.quick-link-card i {
  font-size: 2.5rem;
  color: #C8102E;
  margin-bottom: 20px;
  display: block;
}

.quick-link-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.quick-link-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

/* Quick Help Links */
.quick-help {
  padding: 60px 0;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.quick-help .section-container {
  text-align: center;
}

.quick-help h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 35px;
}

.help-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.help-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 30px;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.help-link:hover {
  background: rgba(255,255,255,0.15);
  border-color: #C8102E;
  transform: translateY(-3px);
}

.help-link i {
  font-size: 1.25rem;
  color: #C8102E;
}

/* Contact Hero (alternate) */
.contact-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 120px 0 80px;
  text-align: center;
  color: white;
}

.contact-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Options */
.contact-options {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.contact-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.contact-card .card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
}

.contact-card .card-icon.sales { background: linear-gradient(135deg, #C8102E, #ff4757); }
.contact-card .card-icon.support { background: linear-gradient(135deg, #0B3D91, #1e90ff); }
.contact-card .card-icon.education { background: linear-gradient(135deg, #228B22, #32cd32); }
.contact-card .card-icon.competition { background: linear-gradient(135deg, #8B0000, #C8102E); }

.contact-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a2e;
}

.contact-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-card .contact-info {
  margin-top: 20px;
}

.contact-card .contact-info a {
  display: block;
  color: #C8102E;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.contact-card .contact-info a:hover {
  color: #8B0000;
}

.contact-card .response-time {
  font-size: 0.875rem;
  color: #888;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background: white;
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-info h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
}

.form-info > p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.info-item i {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C8102E;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-item h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 5px;
}

.info-item p {
  color: #666;
  font-size: 0.95rem;
}

/* Contact Form */
.contact-form {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #C8102E;
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 25px;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: #C8102E;
}

.form-checkbox label {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.btn-primary {
  background: linear-gradient(135deg, #C8102E, #8B0000);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 16, 46, 0.3);
}

.btn-large {
  width: 100%;
  justify-content: center;
  padding: 18px 32px;
  font-size: 1.1rem;
}

/* Office Locations */
.office-locations {
  padding: 80px 0;
  background: #f8f9fa;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.office-card {
  background: white;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.office-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.office-card h3 i {
  color: #C8102E;
}

.office-card .region {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.office-card address {
  font-style: normal;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.office-card .office-contact {
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.office-card .office-contact a {
  display: block;
  color: #1a1a2e;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.office-card .office-contact a:hover {
  color: #C8102E;
}

.office-card .office-contact a i {
  width: 25px;
  color: #C8102E;
}

/* Quick Links */
.quick-links {
  padding: 60px 0;
  background: white;
}

.quick-links-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 30px;
  background: #f8f9fa;
  border-radius: 12px;
  text-decoration: none;
  color: #1a1a2e;
  font-weight: 600;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.quick-link:hover {
  border-color: #C8102E;
  background: white;
  transform: translateY(-2px);
}

.quick-link i {
  font-size: 1.25rem;
  color: #C8102E;
}

/* =====================================================
   HELP CENTER STYLES
   ===================================================== */

/* Help Hero */
.help-hero {
  background: linear-gradient(135deg, #0a1628 0%, #0B3D91 40%, #1e5aa8 70%, #2874c4 100%);
  padding: 160px 0 100px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.help-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.help-hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(200,16,46,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.help-hero .hero-content {
  position: relative;
  z-index: 1;
}

.help-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.help-hero p {
  font-size: 1.35rem;
  opacity: 0.9;
  margin-bottom: 50px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-search {
  display: flex;
  max-width: 750px;
  margin: 0 auto 35px;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  padding: 10px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.hero-search input {
  flex: 1;
  padding: 20px 30px;
  border: none;
  border-radius: 14px;
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.hero-search input:focus {
  outline: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15), 0 0 0 3px rgba(200,16,46,0.3);
}

.hero-search .btn-primary {
  padding: 20px 35px;
  white-space: nowrap;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(200,16,46,0.3);
}

.popular-searches {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.popular-searches span {
  opacity: 0.7;
  font-weight: 500;
}

.popular-searches a {
  color: white;
  text-decoration: none;
  background: rgba(255,255,255,0.12);
  padding: 8px 18px;
  border-radius: 25px;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
  font-weight: 500;
}

.popular-searches a:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* Help Categories */
.help-categories {
  padding: 100px 0;
  background: #f8f9fa;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.category-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 15px 50px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C8102E, #0B3D91);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.category-card:hover {
  transform: translateY(-10px);
  border-color: rgba(200,16,46,0.2);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
}

.category-card:hover .category-icon {
  transform: scale(1.1) rotate(5deg);
}

.ply-bg { background: linear-gradient(135deg, #7B3F9E, #9B59B6); }
.kid-bg { background: linear-gradient(135deg, #008080, #20B2AA); }
.code-bg { background: linear-gradient(135deg, #0B3D91, #1E90FF); }
.mid-bg { background: linear-gradient(135deg, #1E5AA8, #3498DB); }
.pro-bg { background: linear-gradient(135deg, #C8102E, #E74C3C); }
.max-bg { background: linear-gradient(135deg, #8B0000, #C0392B); }
.work-bg { background: linear-gradient(135deg, #228B22, #27AE60); }
.air-bg { background: linear-gradient(135deg, #F05A28, #E67E22); }

.category-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.category-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.article-count {
  font-size: 0.85rem;
  color: #C8102E;
  font-weight: 600;
  background: rgba(200,16,46,0.08);
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
}

/* Platform Help */
.platform-help {
  padding: 100px 0;
  background: white;
}

.platform-help-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.platform-help-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 25px;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.platform-help-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.platform-help-card:hover {
  background: white;
  border-color: #eee;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.platform-help-card:hover::before {
  opacity: 1;
}

.platform-badge {
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
  color: white;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.platform-badge.ply { background: linear-gradient(135deg, #7B3F9E, #9B59B6); }
.platform-badge.kid { background: linear-gradient(135deg, #008080, #20B2AA); }
.platform-badge.code { background: linear-gradient(135deg, #0B3D91, #1E90FF); }
.platform-badge.mid { background: linear-gradient(135deg, #1E5AA8, #3498DB); }
.platform-badge.pro { background: linear-gradient(135deg, #C8102E, #E74C3C); }
.platform-badge.max { background: linear-gradient(135deg, #8B0000, #C0392B); }
.platform-badge.work { background: linear-gradient(135deg, #228B22, #27AE60); }
.platform-badge.air { background: linear-gradient(135deg, #F05A28, #E67E22); }

.platform-help-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.platform-help-card p {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}

/* Popular Articles */
.popular-articles {
  padding: 100px 0;
  background: #f8f9fa;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.article-card {
  display: flex;
  gap: 25px;
  padding: 30px;
  background: white;
  border-radius: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.article-card:hover {
  border-color: rgba(200,16,46,0.2);
  transform: translateX(8px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.article-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #C8102E;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.article-card:hover .article-icon {
  background: linear-gradient(135deg, rgba(200,16,46,0.1), rgba(200,16,46,0.05));
  transform: scale(1.05);
}

.article-content h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
  line-height: 1.4;
}

.article-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
}

.article-meta {
  font-size: 0.85rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 15px;
}

.article-meta i {
  margin-right: 5px;
  color: #C8102E;
}

/* Video Tutorials */
.video-tutorials {
  padding: 100px 0;
  background: white;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.video-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.video-thumb {
  height: 160px;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-thumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C8102E, #8B0000);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(200,16,46,0.4);
}

.video-card:hover .play-btn {
  transform: scale(1.15);
  box-shadow: 0 15px 40px rgba(200,16,46,0.5);
}

.duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.85);
  color: white;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
}

.video-card h4 {
  padding: 22px 22px 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.4;
}

.video-meta {
  padding: 0 22px 22px;
  font-size: 0.9rem;
  color: #888;
}

.videos-cta {
  text-align: center;
  margin-top: 50px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 2px solid #C8102E;
  color: #C8102E;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: #C8102E;
  color: white;
}

/* Need Help CTA */
.need-help-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a14 0%, #1a1a2e 50%, #0f3460 100%);
}

.need-help-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #C8102E 0%, #8B0000 100%);
  padding: 60px 70px;
  border-radius: 28px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(200,16,46,0.3);
}

.need-help-box::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.need-help-content {
  position: relative;
  z-index: 1;
}

.need-help-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.need-help-content p {
  opacity: 0.9;
  font-size: 1.15rem;
}

.need-help-actions {
  display: flex;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: white;
  color: #C8102E;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 2px solid white;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-outline-white:hover {
  background: white;
  color: #C8102E;
}

/* =====================================================
   DOWNLOADS PAGE STYLES
   ===================================================== */

/* Downloads Hero */
.downloads-hero {
  background: linear-gradient(135deg, #0a2810 0%, #228B22 40%, #2E8B57 70%, #3CB371 100%);
  padding: 160px 0 100px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.downloads-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.downloads-hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200,16,46,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.downloads-hero .hero-content {
  position: relative;
  z-index: 1;
}

.downloads-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.downloads-hero p {
  font-size: 1.35rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
}

/* Download Tabs */
.download-tabs {
  background: #fff;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #eee;
  box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.tabs-wrapper {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 20px 0;
}

.tab-btn {
  padding: 14px 32px;
  background: #f8f9fa;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  border-color: #C8102E;
  color: #C8102E;
  background: rgba(200,16,46,0.05);
}

.tab-btn.active {
  background: linear-gradient(135deg, #C8102E, #8B0000);
  border-color: #C8102E;
  color: white;
  box-shadow: 0 8px 25px rgba(200,16,46,0.3);
}

/* Download Sections */
.download-section {
  display: none;
  padding: 80px 0;
}

.download-section.active {
  display: block;
}

/* Featured Download */
.download-featured {
  background: linear-gradient(135deg, #0a0a14 0%, #1a1a2e 50%, #0f3460 100%);
  border-radius: 28px;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(26,26,46,0.4);
}

.download-featured::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,16,46,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.featured-content {
  display: flex;
  align-items: center;
  gap: 35px;
  position: relative;
  z-index: 1;
}

.featured-icon {
  width: 110px;
  height: 110px;
  border-radius: 24px;
  background: linear-gradient(135deg, #C8102E 0%, #8B0000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.75rem;
  box-shadow: 0 15px 40px rgba(200,16,46,0.4);
}

.featured-info h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.featured-info p {
  opacity: 0.85;
  max-width: 450px;
  margin-bottom: 18px;
  line-height: 1.7;
  font-size: 1.05rem;
}

.version-info {
  display: flex;
  gap: 25px;
  font-size: 0.9rem;
  opacity: 0.7;
}

.version-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.download-buttons {
  display: flex;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.btn-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 35px;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  min-width: 130px;
  border: 1px solid rgba(255,255,255,0.1);
}

.btn-download:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-5px);
  border-color: rgba(200,16,46,0.3);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.btn-download i {
  font-size: 2.25rem;
  margin-bottom: 10px;
}

.btn-download span {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Downloads Grid */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.download-card {
  display: flex;
  gap: 25px;
  padding: 35px;
  background: #fff;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 2px solid #f0f0f0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.download-card:hover {
  background: white;
  border-color: rgba(200,16,46,0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.download-icon {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #C8102E;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.download-card:hover .download-icon {
  background: linear-gradient(135deg, rgba(200,16,46,0.1), rgba(200,16,46,0.05));
  transform: scale(1.05);
}

.download-info {
  flex: 1;
}

.download-info h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.download-info p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.6;
}

.version-small {
  font-size: 0.85rem;
  color: #888;
  font-weight: 500;
}

.download-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.download-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: #f8f9fa;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  text-decoration: none;
  color: #1a1a2e;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.download-links a:hover {
  border-color: #C8102E;
  color: #C8102E;
  background: rgba(200,16,46,0.05);
}

/* Firmware Table */
.firmware-notice {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 25px 30px;
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border-radius: 16px;
  margin-bottom: 40px;
  border-left: 5px solid #f39c12;
}

.firmware-notice i {
  color: #856404;
  font-size: 1.4rem;
  margin-top: 2px;
}

.firmware-notice p {
  color: #856404;
  font-size: 1rem;
  line-height: 1.7;
}

.firmware-table {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
}

.firmware-table table {
  width: 100%;
  border-collapse: collapse;
}

.firmware-table th,
.firmware-table td {
  padding: 22px 30px;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}

.firmware-table th {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  font-weight: 700;
  color: white;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.firmware-table tbody tr {
  transition: all 0.2s ease;
}

.firmware-table tbody tr:hover {
  background: linear-gradient(90deg, rgba(200,16,46,0.03), transparent);
}

.firmware-table td {
  color: #555;
  font-size: 0.95rem;
}

.device-name {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #1a1a2e;
}

.device-name i {
  color: #C8102E;
  width: 35px;
  height: 35px;
  background: rgba(200,16,46,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.firmware-table a {
  color: #C8102E;
  text-decoration: none;
  font-weight: 600;
}

.firmware-table a:hover {
  text-decoration: underline;
}

.btn-small {
  display: inline-block;
  padding: 10px 22px;
  background: linear-gradient(135deg, #C8102E, #8B0000);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(200,16,46,0.25);
}

.btn-small:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200,16,46,0.35);
  text-decoration: none;
}

/* Documentation */
.docs-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.docs-category {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.06);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.docs-category:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.docs-category h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid #f0f0f0;
}

.docs-category h3 i {
  color: #C8102E;
  width: 40px;
  height: 40px;
  background: rgba(200,16,46,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.docs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #f8f9fa;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.doc-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  background: white;
  border-color: rgba(200,16,46,0.15);
}

.doc-item i {
  color: #C8102E;
  font-size: 1.2rem;
}

.doc-item span {
  flex: 1;
  color: #1a1a2e;
  font-size: 0.95rem;
  font-weight: 500;
}

.doc-size {
  color: #888 !important;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
}

/* CAD Files */
.cad-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.cad-card {
  display: flex;
  gap: 30px;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  box-shadow: 0 15px 50px rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.cad-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #0B3D91, #1E90FF);
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.cad-card:hover {
  background: white;
  border-color: rgba(11,61,145,0.2);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.cad-card:hover::before {
  transform: scaleY(1);
}

.cad-preview {
  width: 140px;
  height: 140px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0a0a14 0%, #1a1a2e 50%, #0f3460 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C8102E;
  font-size: 3.5rem;
  flex-shrink: 0;
  box-shadow: 0 15px 40px rgba(26,26,46,0.3);
  transition: all 0.4s ease;
}

.cad-card:hover .cad-preview {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(26,26,46,0.4);
}

.cad-info h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.cad-info p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.7;
}

.cad-formats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cad-formats a {
  padding: 10px 18px;
  background: #f8f9fa;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  text-decoration: none;
  color: #1a1a2e;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cad-formats a:hover {
  border-color: #0B3D91;
  color: #0B3D91;
  background: rgba(11,61,145,0.05);
}

/* Curriculum */
.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.curriculum-card {
  background: white;
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.06);
  border: 2px solid #f0f0f0;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.curriculum-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #228B22, #27AE60);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.curriculum-card:hover {
  border-color: rgba(34,139,34,0.2);
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.curriculum-card:hover::before {
  transform: scaleX(1);
}

.curriculum-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.curriculum-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 14px;
}

.curriculum-card > p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.curriculum-meta {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
  font-size: 0.9rem;
  color: #888;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.curriculum-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.curriculum-meta i {
  color: #228B22;
}

.btn-outline-small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid #228B22;
  color: #228B22;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-outline-small:hover {
  background: linear-gradient(135deg, #228B22, #27AE60);
  color: white;
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(34,139,34,0.3);
}

/* =====================================================
   FORUM PAGE STYLES
   ===================================================== */

/* Forum Hero */
.forum-hero {
  background: linear-gradient(135deg, #8B0000 0%, #C8102E 50%, #ff4757 100%);
  padding: 160px 0 100px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.forum-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.8;
}

.forum-hero .section-container {
  position: relative;
  z-index: 1;
}

.forum-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.forum-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.forum-hero p {
  font-size: 1.35rem;
  opacity: 0.95;
  margin-bottom: 50px;
  line-height: 1.6;
}

.forum-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 50px;
}

.forum-stats .stat {
  text-align: center;
  position: relative;
}

.forum-stats .stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.3);
}

.stat-number {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.forum-hero .btn-primary {
  background: white;
  color: #C8102E;
  padding: 16px 35px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

.forum-hero .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.3);
}

.forum-hero .btn-outline-white {
  background: transparent;
  color: white;
  padding: 16px 35px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.forum-hero .btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  transform: translateY(-3px);
}

/* Forum Search */
.forum-search-section {
  padding: 40px 0;
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
}

.forum-search-box {
  display: flex;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 5px 30px rgba(0,0,0,0.08);
  border-radius: 14px;
  overflow: hidden;
}

.forum-search-box input {
  flex: 1;
  padding: 20px 28px;
  border: none;
  font-size: 1.05rem;
  font-family: 'Inter', sans-serif;
  background: white;
}

.forum-search-box input:focus {
  outline: none;
}

.forum-search-box input::placeholder {
  color: #999;
}

.forum-search-box button {
  padding: 20px 35px;
  background: #C8102E;
  color: white;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
}

.forum-search-box button:hover {
  background: #8B0000;
}

/* Forum Categories */
.forum-categories {
  padding: 80px 0;
  background: white;
}

.forum-categories .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.forum-categories .section-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a2e;
}

.category-group {
  margin-bottom: 50px;
}

.category-header {
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 3px solid #f0f0f0;
}

.category-header h3 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a2e;
}

.category-header h3 i {
  color: #C8102E;
  font-size: 1.2rem;
  width: 45px;
  height: 45px;
  background: rgba(200, 16, 46, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.category-item {
  display: grid;
  grid-template-columns: 65px 1fr 130px 1.2fr;
  gap: 25px;
  align-items: center;
  padding: 25px 30px;
  background: #f8f9fa;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.category-item:hover {
  background: white;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transform: translateX(8px);
  border-color: rgba(200, 16, 46, 0.2);
}

.category-item .category-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1a1a2e, #2d3436);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.category-info h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.category-info p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.category-stats {
  text-align: center;
  padding: 12px 20px;
  background: white;
  border-radius: 10px;
}

.category-stats span {
  display: block;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

.category-stats span:first-child {
  font-weight: 600;
  color: #1a1a2e;
}

.latest-post {
  text-align: right;
  padding-left: 20px;
  border-left: 2px solid #eee;
}

.latest-label {
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.latest-title {
  display: block;
  font-size: 0.95rem;
  color: #1a1a2e;
  font-weight: 600;
  margin-top: 5px;
  line-height: 1.4;
}

.latest-time {
  font-size: 0.8rem;
  color: #888;
  margin-top: 3px;
}

/* Recent Activity */
.recent-activity {
  padding: 80px 0;
  background: #f8f9fa;
}

.activity-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.activity-column h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e0e0e0;
}

.activity-column h3 i {
  color: white;
  width: 40px;
  height: 40px;
  background: #C8102E;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.activity-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.activity-item {
  display: block;
  padding: 22px 25px;
  background: white;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.activity-item:hover {
  transform: translateX(8px);
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  border-color: rgba(200, 16, 46, 0.2);
}

.activity-title {
  display: block;
  font-weight: 600;
  color: #1a1a2e;
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.activity-meta {
  font-size: 0.85rem;
  color: #888;
}

/* Community Guidelines */
.community-guidelines {
  padding: 80px 0;
  background: white;
}

.guidelines-box {
  background: linear-gradient(135deg, #1a1a2e, #2d3436);
  border-radius: 24px;
  padding: 60px;
  color: white;
  position: relative;
  overflow: hidden;
}

.guidelines-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(200, 16, 46, 0.15);
  border-radius: 50%;
}

.guidelines-box::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(200, 16, 46, 0.1);
  border-radius: 50%;
}

.guidelines-box h3 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 45px;
  text-align: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.guidelines-box h3 i {
  font-size: 1.5rem;
}

.guidelines-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  position: relative;
  z-index: 1;
}

.guideline {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.guideline:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}

.guideline i {
  font-size: 2.5rem;
  color: #C8102E;
  margin-bottom: 20px;
  display: block;
}

.guideline h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.guideline p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.7;
}

/* =====================================================
   WARRANTY PAGE STYLES
   ===================================================== */

/* Warranty Hero */
.warranty-hero {
  background: linear-gradient(135deg, #0a1628 0%, #1a1a2e 30%, #1E5AA8 70%, #2874c4 100%);
  padding: 160px 0 100px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.warranty-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.warranty-hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,16,46,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.warranty-hero .hero-content {
  position: relative;
  z-index: 1;
}

.warranty-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.warranty-hero p {
  font-size: 1.35rem;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Warranty Overview */
.warranty-overview {
  padding: 100px 0;
  background: #fff;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.overview-card {
  background: white;
  border-radius: 24px;
  padding: 50px 35px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border: 2px solid #f0f0f0;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.overview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #C8102E, #1E5AA8);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.overview-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
  border-color: rgba(200,16,46,0.2);
}

.overview-card:hover::before {
  transform: scaleX(1);
}

.overview-card.highlight {
  border-color: #C8102E;
  transform: scale(1.05);
  box-shadow: 0 30px 80px rgba(200,16,46,0.15);
}

.overview-card.highlight::before {
  transform: scaleX(1);
  background: linear-gradient(90deg, #C8102E, #8B0000);
}

.overview-card.highlight:hover {
  transform: scale(1.08);
}

.overview-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.25rem;
  color: #C8102E;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.overview-card:hover .overview-icon {
  transform: scale(1.1) rotate(5deg);
}

.overview-card.highlight .overview-icon {
  background: linear-gradient(135deg, #C8102E 0%, #8B0000 100%);
  color: white;
  box-shadow: 0 15px 40px rgba(200,16,46,0.3);
}

.overview-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.warranty-period {
  font-size: 1.2rem;
  font-weight: 700;
  color: #C8102E;
  margin-bottom: 18px;
  display: inline-block;
  background: rgba(200,16,46,0.1);
  padding: 8px 20px;
  border-radius: 30px;
}

.overview-card.highlight .warranty-period {
  background: rgba(255,255,255,0.2);
  color: #C8102E;
}

.overview-card p {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
}

/* Coverage Details */
.warranty-coverage {
  padding: 100px 0;
  background: #f8f9fa;
}

.coverage-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.coverage-section {
  padding: 40px;
  border-radius: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.coverage-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
}

.coverage-section.covered {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border: none;
  box-shadow: 0 15px 50px rgba(40,167,69,0.15);
}

.coverage-section.covered::before {
  background: linear-gradient(180deg, #28a745, #20c997);
}

.coverage-section.covered:hover {
  box-shadow: 0 20px 60px rgba(40,167,69,0.2);
  transform: translateY(-5px);
}

.coverage-section.not-covered {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  border: none;
  box-shadow: 0 15px 50px rgba(220,53,69,0.15);
}

.coverage-section.not-covered::before {
  background: linear-gradient(180deg, #dc3545, #e74c3c);
}

.coverage-section.not-covered:hover {
  box-shadow: 0 20px 60px rgba(220,53,69,0.2);
  transform: translateY(-5px);
}

.coverage-section h3 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(0,0,0,0.08);
}

.coverage-section h3 i {
  font-size: 1.5rem;
}

.coverage-section.covered h3 {
  color: #155724;
}

.coverage-section.not-covered h3 {
  color: #721c24;
}

.coverage-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.coverage-section li {
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: all 0.2s ease;
}

.coverage-section li:hover {
  padding-left: 40px;
}

.coverage-section li:last-child {
  border-bottom: none;
}

.coverage-section.covered li {
  color: #155724;
}

.coverage-section.covered li::before {
  content: "\f00c";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #28a745;
  font-size: 0.9rem;
}

.coverage-section.not-covered li {
  color: #721c24;
}

.coverage-section.not-covered li::before {
  content: "\f00d";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #dc3545;
  font-size: 0.9rem;
}

/* Warranty Products Table */
.warranty-products {
  padding: 100px 0;
  background: #fff;
}

.products-table {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  margin-top: 50px;
  border: 1px solid #eee;
}

.products-table table {
  width: 100%;
  border-collapse: collapse;
}

.products-table th,
.products-table td {
  padding: 22px 30px;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}

.products-table th {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.products-table th:first-child {
  border-radius: 0;
}

.products-table th:last-child {
  border-radius: 0;
}

.products-table td {
  color: #555;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.products-table td:nth-child(2),
.products-table td:nth-child(3) {
  font-weight: 700;
  color: #1a1a2e;
}

.products-table td:nth-child(3) {
  color: #C8102E;
}

.product-label {
  font-weight: 700;
  color: #1a1a2e;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.product-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #C8102E;
  border-radius: 50%;
}

.products-table tbody tr {
  transition: all 0.2s ease;
}

.products-table tbody tr:hover {
  background: linear-gradient(90deg, rgba(200,16,46,0.03), transparent);
}

.products-table tbody tr:hover td {
  color: #1a1a2e;
}

.products-table tbody tr:last-child td {
  border-bottom: none;
}

/* Claim Process */
.claim-process {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.process-steps {
  display: flex;
  gap: 20px;
  margin-top: 60px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 80px;
  right: 80px;
  height: 3px;
  background: linear-gradient(90deg, #C8102E, #1E5AA8, #C8102E);
  z-index: 0;
}

.process-step {
  flex: 1;
  position: relative;
  text-align: center;
  z-index: 1;
}

.process-step:not(:last-child)::after {
  display: none;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C8102E 0%, #8B0000 100%);
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 15px 40px rgba(200,16,46,0.3);
  border: 4px solid #fff;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 20px 50px rgba(200,16,46,0.4);
}

.step-content {
  background: #fff;
  padding: 25px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.process-step:hover .step-content {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.step-content h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.step-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
}

/* Warranty Form */
.warranty-form-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
}

.warranty-form-container {
  max-width: 900px;
  margin: 50px auto 0;
}

.warranty-form {
  background: white;
  padding: 60px;
  border-radius: 28px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.1);
  border: 1px solid #f0f0f0;
}

.form-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 2px solid #f5f5f5;
}

.form-section:last-of-type {
  margin-bottom: 30px;
  padding-bottom: 0;
  border-bottom: none;
}

.form-section h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-section h3::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, #C8102E, #1E5AA8);
  border-radius: 2px;
}

/* File Upload */
.file-upload {
  position: relative;
}

.file-upload input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 40px;
  border: 2px dashed #d0d0d0;
  border-radius: 18px;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  transition: all 0.4s ease;
}

.file-upload:hover .file-upload-label {
  border-color: #C8102E;
  border-style: solid;
  background: linear-gradient(135deg, rgba(200,16,46,0.02), #fff);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(200,16,46,0.1);
}

.file-upload-label i {
  font-size: 3rem;
  color: #C8102E;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.file-upload:hover .file-upload-label i {
  transform: scale(1.1);
}

.file-upload-label span {
  color: #555;
  font-weight: 500;
}

.file-hint {
  font-size: 0.85rem;
  color: #888 !important;
  margin-top: 8px;
  font-weight: 400 !important;
}

/* Warranty FAQ */
.warranty-faq {
  padding: 100px 0;
  background: #f8f9fa;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.faq-item {
  padding: 35px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #C8102E, #1E5AA8);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(200,16,46,0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

.faq-item:hover::before {
  transform: scaleY(1);
}

.faq-item h4 {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 15px;
}

.faq-item h4 i {
  color: #C8102E;
  margin-top: 3px;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.faq-item p {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
  padding-left: 32px;
}

/* Warranty Contact */
.warranty-contact {
  padding: 80px 0;
  background: #fff;
}

.warranty-contact .contact-box {
  background: linear-gradient(135deg, #0a0a14 0%, #1a1a2e 40%, #16213e 100%);
  border-radius: 28px;
  padding: 70px 60px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(26,26,46,0.4);
}

.warranty-contact .contact-box::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200,16,46,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.warranty-contact .contact-box::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30,90,168,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.warranty-contact .contact-box h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.warranty-contact .contact-box > p {
  opacity: 0.85;
  margin-bottom: 40px;
  font-size: 1.15rem;
  position: relative;
  z-index: 1;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 30px;
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-method:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  border-color: rgba(200,16,46,0.3);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.contact-method i {
  font-size: 1.4rem;
  color: #C8102E;
  width: 45px;
  height: 45px;
  background: rgba(200,16,46,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-method span {
  font-weight: 600;
  font-size: 1rem;
}

.hours {
  font-size: 0.95rem;
  opacity: 0.7;
  position: relative;
  z-index: 1;
}

/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */

@media (max-width: 1200px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .platform-help-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .docs-categories {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .curriculum-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .guidelines-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .form-layout {
    grid-template-columns: 1fr;
  }
  
  .office-grid,
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .quick-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .download-featured {
    flex-direction: column;
    text-align: center;
  }
  
  .featured-content {
    flex-direction: column;
  }
  
  .category-item {
    grid-template-columns: 60px 1fr auto;
    gap: 20px;
    padding: 25px;
  }
  
  .category-stats {
    display: flex;
    gap: 15px;
  }
  
  .latest-post {
    display: none;
  }
  
  .activity-columns {
    grid-template-columns: 1fr;
  }
  
  .coverage-content {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    flex-direction: column;
    gap: 40px;
  }
  
  .process-steps::before {
    display: none;
  }
  
  .process-step:not(:last-child)::after {
    display: none;
  }
  
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .overview-card.highlight {
    transform: none;
    order: -1;
  }
  
  .warranty-hero {
    padding: 140px 0 80px;
  }
  
  .warranty-overview {
    margin-top: -30px;
    padding: 80px 0;
  }
  
  .warranty-coverage,
  .warranty-products,
  .claim-process,
  .warranty-form-section,
  .warranty-faq {
    padding: 70px 0;
  }
  
  .forum-hero {
    padding: 140px 0 80px;
  }
  
  .forum-search-section {
    padding: 60px 0;
  }
  
  .forum-categories {
    padding: 60px 0;
  }
  
  .recent-activity {
    padding: 60px 0;
  }
  
  .community-guidelines {
    padding: 60px 0;
  }
  
  .guidelines-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-hero h1,
  .help-hero h1,
  .downloads-hero h1,
  .forum-hero h1,
  .warranty-hero h1,
  .support-hero h1 {
    font-size: 2.5rem;
  }
  
  .warranty-hero {
    padding: 120px 0 70px;
  }
  
  .warranty-hero p {
    font-size: 1.1rem;
  }
  
  .warranty-overview {
    margin-top: 0;
    padding: 60px 0;
  }
  
  .overview-icon {
    width: 75px;
    height: 75px;
    font-size: 2rem;
  }
  
  .overview-card {
    padding: 40px 30px;
  }
  
  .coverage-section {
    padding: 30px;
  }
  
  .coverage-section h3 {
    font-size: 1.2rem;
  }
  
  .step-number {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }
  
  .step-content {
    padding: 20px 15px;
  }
  
  .warranty-form {
    padding: 40px 30px;
  }
  
  .faq-item {
    padding: 28px;
  }
  
  .warranty-contact .contact-box {
    padding: 50px 40px;
  }
  
  .contact-method {
    width: 100%;
    justify-content: center;
  }
  
  .forum-hero {
    padding: 120px 0 70px;
  }
  
  .forum-hero .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .forum-stats {
    flex-direction: column;
    gap: 25px;
    padding: 30px;
  }
  
  .forum-stats .stat {
    padding: 0;
    border: none !important;
  }
  
  .forum-stats .stat::after {
    display: none;
  }
  
  .forum-search-box {
    flex-direction: column;
    padding: 8px;
  }
  
  .forum-search-box input {
    padding: 16px 20px;
    border-radius: 10px;
  }
  
  .forum-search-box button {
    padding: 16px 30px;
    border-radius: 10px;
    width: 100%;
  }
  
  .category-item {
    grid-template-columns: 50px 1fr;
    gap: 15px;
    padding: 20px;
  }
  
  .category-stats {
    display: none;
  }
  
  .category-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .activity-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
  }
  
  .activity-meta {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  
  .guidelines-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .guideline {
    padding: 25px 20px;
  }
  
  .guidelines-box {
    padding: 50px 30px;
  }
  
  .guidelines-box h3 {
    font-size: 1.5rem;
  }
  
  .contact-grid,
  .options-grid {
    grid-template-columns: 1fr;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .platform-help-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
  }
  
  .videos-grid {
    grid-template-columns: 1fr;
  }
  
  .tabs-wrapper {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  
  .tab-btn {
    white-space: nowrap;
  }
  
  .downloads-grid {
    grid-template-columns: 1fr;
  }
  
  .download-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-download {
    flex-direction: row;
    justify-content: center;
  }
  
  .docs-categories {
    grid-template-columns: 1fr;
  }
  
  .cad-grid {
    grid-template-columns: 1fr;
  }
  
  .curriculum-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .need-help-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }
  
  .need-help-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .contact-methods {
    flex-direction: column;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form,
  .warranty-form {
    padding: 30px 20px;
  }
  
  .office-grid,
  .locations-grid {
    grid-template-columns: 1fr;
  }
  
  .quick-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-search {
    flex-direction: column;
  }
  
  .products-table {
    overflow-x: auto;
  }
  
  .products-table table {
    min-width: 600px;
  }
  
  .firmware-table {
    overflow-x: auto;
  }
  
  .firmware-table table {
    min-width: 700px;
  }
}

@media (max-width: 480px) {
  .contact-hero h1,
  .help-hero h1,
  .downloads-hero h1,
  .forum-hero h1,
  .warranty-hero h1,
  .support-hero h1 {
    font-size: 2rem;
  }
  
  .warranty-hero {
    padding: 100px 0 60px;
  }
  
  .warranty-hero p {
    font-size: 1rem;
  }
  
  .overview-card {
    padding: 35px 25px;
    border-radius: 18px;
  }
  
  .overview-icon {
    width: 65px;
    height: 65px;
    font-size: 1.75rem;
  }
  
  .overview-card h3 {
    font-size: 1.3rem;
  }
  
  .warranty-period {
    font-size: 1rem;
    padding: 6px 16px;
  }
  
  .coverage-section {
    padding: 25px;
    border-radius: 18px;
  }
  
  .coverage-section h3 {
    font-size: 1.1rem;
  }
  
  .coverage-section li {
    font-size: 0.9rem;
    padding: 10px 0;
    padding-left: 30px;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }
  
  .step-content h4 {
    font-size: 1rem;
  }
  
  .step-content p {
    font-size: 0.85rem;
  }
  
  .warranty-form {
    padding: 30px 20px;
    border-radius: 20px;
  }
  
  .form-section h3 {
    font-size: 1.15rem;
  }
  
  .file-upload-label {
    padding: 35px 25px;
  }
  
  .file-upload-label i {
    font-size: 2.5rem;
  }
  
  .faq-item {
    padding: 25px 20px;
    border-radius: 16px;
  }
  
  .faq-item h4 {
    font-size: 1rem;
  }
  
  .warranty-contact .contact-box {
    padding: 40px 25px;
    border-radius: 20px;
  }
  
  .warranty-contact .contact-box h3 {
    font-size: 1.5rem;
  }
  
  .contact-method {
    padding: 15px 20px;
  }
  
  .contact-method i {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .forum-hero {
    padding: 100px 0 60px;
  }
  
  .forum-stats {
    padding: 25px 20px;
  }
  
  .forum-stats .stat .number {
    font-size: 2rem;
  }
  
  .category-group h3 {
    font-size: 1.3rem;
    padding-left: 15px;
  }
  
  .category-item {
    padding: 18px 15px;
  }
  
  .category-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .category-info h4 {
    font-size: 1rem;
  }
  
  .activity-column h3 {
    font-size: 1.2rem;
    padding: 15px 20px;
  }
  
  .activity-item {
    padding: 18px 15px;
  }
  
  .guidelines-box {
    padding: 40px 20px;
    border-radius: 20px;
  }
  
  .guidelines-box h3 {
    font-size: 1.3rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .guideline i {
    font-size: 2rem;
  }
  
  .guideline h4 {
    font-size: 1.05rem;
  }
  
  .platform-help-grid {
    grid-template-columns: 1fr;
  }
  
  .quick-links-grid {
    grid-template-columns: 1fr;
  }
  
  .quick-link {
    width: 100%;
    justify-content: center;
  }
  
  .options-grid {
    grid-template-columns: 1fr;
  }
  
  .option-card {
    padding: 30px 20px;
  }
  
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   ONLINE HELP PAGE STYLES
   ===================================================== */

/* Online Help Hero */
.online-help-hero {
  background: linear-gradient(135deg, #0a1628 0%, #1a1a2e 40%, #0D47A1 100%);
  padding: 180px 0 120px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.online-help-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.online-help-hero .hero-content {
  position: relative;
  z-index: 1;
}

.help-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid rgba(255,255,255,0.2);
}

.help-badge i {
  margin-right: 8px;
}

.online-help-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.online-help-hero p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Hero Search */
.hero-search {
  max-width: 650px;
  margin: 0 auto;
}

.search-input-wrapper {
  display: flex;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.search-input-wrapper input {
  flex: 1;
  padding: 22px 30px;
  border: none;
  font-size: 1.1rem;
  outline: none;
}

.search-input-wrapper input::placeholder {
  color: #999;
}

.btn-hero-search {
  padding: 22px 35px;
  background: linear-gradient(135deg, #C8102E, #8B0000);
  color: white;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-hero-search:hover {
  background: linear-gradient(135deg, #8B0000, #5c0000);
}

.popular-searches {
  margin-top: 25px;
  font-size: 0.95rem;
}

.popular-searches span {
  opacity: 0.7;
  margin-right: 10px;
}

.popular-searches a {
  color: white;
  text-decoration: none;
  opacity: 0.85;
  margin: 0 8px;
  transition: opacity 0.3s ease;
}

.popular-searches a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Quick Links Section */
.quick-links-section {
  padding: 80px 0;
  background: white;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.quick-links-section .section-container {
  padding: 50px;
  background: #f8f9fa;
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.quick-links-section .quick-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.quick-link-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: white;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.quick-link-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200,16,46,0.2);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.quick-link-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, #C8102E, #8B0000);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 10px 25px rgba(200,16,46,0.3);
}

.quick-link-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.quick-link-card p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* Platform Support Section */
.platform-support-section {
  padding: 100px 0;
  background: white;
}

.platform-support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.platform-support-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid #f0f0f0;
}

.platform-support-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.platform-header {
  padding: 25px;
  color: white;
  text-align: center;
}

.platform-header.ply { background: linear-gradient(135deg, #7B3F9E, #9B59B6); }
.platform-header.kid { background: linear-gradient(135deg, #008080, #20B2AA); }
.platform-header.code { background: linear-gradient(135deg, #0B3D91, #1E90FF); }
.platform-header.mid { background: linear-gradient(135deg, #1E5AA8, #3498DB); }
.platform-header.pro { background: linear-gradient(135deg, #C8102E, #E74C3C); }
.platform-header.max { background: linear-gradient(135deg, #8B0000, #C0392B); }
.platform-header.work { background: linear-gradient(135deg, #228B22, #27AE60); }
.platform-header.air { background: linear-gradient(135deg, #F05A28, #E67E22); }

.platform-header i {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.platform-header h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.platform-links {
  padding: 20px;
}

.platform-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  color: #444;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.platform-links a:hover {
  background: #f8f9fa;
  color: #C8102E;
  padding-left: 20px;
}

.platform-links a i {
  color: #ccc;
  transition: color 0.3s ease;
}

.platform-links a:hover i {
  color: #C8102E;
}

/* Common Topics Section */
.common-topics-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.topic-category {
  background: white;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.05);
}

.topic-category h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f0f0;
}

.topic-category h3 i {
  color: #C8102E;
}

.topic-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.topic-category li {
  margin-bottom: 12px;
}

.topic-category a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
  text-decoration: none;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.topic-category a:hover {
  color: #C8102E;
  padding-left: 8px;
}

.topic-category a i {
  color: #ddd;
  font-size: 0.8rem;
}

.topic-category a:hover i {
  color: #C8102E;
}

.see-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #C8102E;
  font-weight: 700;
  text-decoration: none;
  margin-top: 15px;
  transition: gap 0.3s ease;
}

.see-all-link:hover {
  gap: 12px;
}

/* Video Help Section */
.video-help-section {
  padding: 100px 0;
  background: white;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.video-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  text-decoration: none;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.video-thumbnail {
  position: relative;
  height: 160px;
  background: linear-gradient(135deg, #1a1a2e, #0f3460);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-thumbnail i {
  font-size: 3rem;
  color: white;
  opacity: 0.8;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(200,16,46,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-card:hover .play-overlay {
  opacity: 1;
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}

.video-info {
  padding: 25px;
}

.video-info h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
  line-height: 1.4;
}

.video-info p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

.video-cta {
  text-align: center;
  margin-top: 50px;
}

/* Live Support Section */
.live-support-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a1628 0%, #1a1a2e 100%);
}

.live-support-section .section-title {
  color: white;
}

.live-support-section .section-title::after {
  margin: 15px auto 0;
}

.live-support-section .section-subtitle {
  color: rgba(255,255,255,0.8);
}

.support-options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.support-option-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.support-option-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}

.support-option-icon {
  width: 75px;
  height: 75px;
  border-radius: 20px;
  background: linear-gradient(135deg, #C8102E, #8B0000);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 1.75rem;
  color: white;
  box-shadow: 0 10px 30px rgba(200,16,46,0.4);
}

.support-option-card.available .support-option-icon {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 10px 30px rgba(34,197,94,0.4);
}

.support-option-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.support-option-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.availability {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.availability.online {
  background: rgba(34,197,94,0.2);
  color: #22c55e;
}

.availability.hours {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

.btn-support-option {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background: white;
  color: #1a1a2e;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-support-option:hover {
  background: #C8102E;
  color: white;
  transform: translateY(-2px);
}

/* Online Help CTA */
.online-help-cta {
  padding: 100px 0;
  background: #f8f9fa;
}

.help-cta-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #C8102E, #8B0000);
  padding: 60px 70px;
  border-radius: 28px;
  color: white;
  box-shadow: 0 30px 80px rgba(200,16,46,0.3);
}

.help-cta-box h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.help-cta-box p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Online Help Responsive */
@media (max-width: 1200px) {
  .quick-links-section .quick-links-grid,
  .platform-support-grid,
  .video-grid,
  .support-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .online-help-hero {
    padding: 140px 0 80px;
  }
  
  .online-help-hero h1 {
    font-size: 2.5rem;
  }
  
  .search-input-wrapper {
    flex-direction: column;
  }
  
  .search-input-wrapper input {
    padding: 18px 20px;
  }
  
  .btn-hero-search {
    padding: 18px 25px;
    justify-content: center;
  }
  
  .quick-links-section .quick-links-grid,
  .platform-support-grid,
  .video-grid,
  .support-options-grid,
  .topics-grid {
    grid-template-columns: 1fr;
  }
  
  .quick-links-section .section-container {
    padding: 30px 20px;
  }
  
  .help-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 40px 25px;
    gap: 25px;
  }
  
  .help-cta-box h2 {
    font-size: 1.8rem;
  }
}
