/* ============================================
   9. AIR COMPRESSOR CONFIG PAGE (ID: 1826) - DARK THEME
   Module: 08-config-page.css
   ============================================ */

/* Dark background for entire page */
body.page-id-1826 {
  background: #0a0a0a !important;
}

body.page-id-1826 .site-content,
body.page-id-1826 .entry-content,
body.page-id-1826 .ast-container {
  background: #0a0a0a !important;
}

/* Hide default page title - we have custom hero */
body.page-id-1826 .entry-title,
body.page-id-1826 h1.entry-title {
  display: none !important;
}

/* All text elements white */
body.page-id-1826 label,
body.page-id-1826 .gfield_label,
body.page-id-1826 p,
body.page-id-1826 span,
body.page-id-1826 h2,
body.page-id-1826 h3,
body.page-id-1826 h4,
body.page-id-1826 li {
  color: #ffffff !important;
}

/* ============================================
   HERO SECTION - Two Column Layout
   ============================================ */
body.page-id-1826 .config-hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 48px auto;
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(1,78,252,0.12) 0%, rgba(0,51,160,0.06) 50%, rgba(10,10,10,0.95) 100%);
  border: 1px solid rgba(1,78,252,0.2);
  border-radius: 20px;
}

body.page-id-1826 .config-hero-content {
  padding-right: 20px;
}

body.page-id-1826 .config-badge {
  display: inline-block;
  color: #15B5FF !important;
  background: rgba(21,181,255,0.15) !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

body.page-id-1826 .config-hero-section h2 {
  color: #ffffff !important;
  font-size: 2.25rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin: 0 0 20px 0 !important;
  border: none !important;
  padding: 0 !important;
}

body.page-id-1826 .config-hero-content > p {
  color: rgba(255,255,255,0.8) !important;
  font-size: 1.05rem !important;
  line-height: 1.7 !important;
  margin: 0 0 28px 0 !important;
}

body.page-id-1826 .config-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

body.page-id-1826 .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9) !important;
  font-size: 14px;
  font-weight: 500;
}

body.page-id-1826 .trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(1,78,252,0.2);
  color: #014EFC !important;
  font-size: 12px;
  border-radius: 50%;
}

body.page-id-1826 .config-hero-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

body.page-id-1826 .config-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

body.page-id-1826 .config-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  pointer-events: none;
}

/* ============================================
   PROCESS STEPS GRID
   ============================================ */
body.page-id-1826 .config-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

body.page-id-1826 .process-step {
  background: rgba(20,20,20,0.95);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

body.page-id-1826 .process-step:hover {
  border-color: rgba(1,78,252,0.3);
  transform: translateY(-2px);
}

body.page-id-1826 .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #014EFC 0%, #0033A0 100%);
  color: #ffffff !important;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 16px;
}

body.page-id-1826 .process-step h4 {
  color: #ffffff !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  margin: 0 0 10px 0 !important;
}

body.page-id-1826 .process-step p {
  color: rgba(255,255,255,0.65) !important;
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

/* ============================================
   INTRO CONTAINER
   ============================================ */
body.page-id-1826 .config-intro {
  max-width: 720px;
  margin: 0 auto 40px auto;
}

body.page-id-1826 .config-card {
  background: rgba(20,20,20,0.95);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 24px;
}

body.page-id-1826 .config-card h3 {
  color: #ffffff !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  margin: 0 0 16px 0 !important;
  padding-bottom: 12px !important;
  border-bottom: 2px solid #014EFC !important;
}

body.page-id-1826 .config-card ul {
  margin: 0;
  padding-left: 20px;
}

body.page-id-1826 .config-card li {
  color: rgba(255,255,255,0.8) !important;
  margin-bottom: 10px;
  line-height: 1.5;
}

body.page-id-1826 .config-card li:last-child {
  margin-bottom: 0;
}

body.page-id-1826 .config-cta {
  color: rgba(255,255,255,0.6) !important;
  font-size: 0.95rem !important;
  margin-bottom: 32px !important;
  text-align: center;
}

body.page-id-1826 .config-divider,
body.page-id-1826 hr {
  display: none !important;
}

/* ============================================
   FORM INTRO
   ============================================ */
.config-form-intro {
  text-align: center;
  padding: 50px 20px 40px;
  max-width: 600px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
}

.config-form-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff !important;
  margin: 0 0 16px 0;
}

.config-form-desc {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6) !important;
  margin: 0;
}

/* ============================================
   FORM CONTAINER
   ============================================ */
body.page-id-1826 .wpcf7-form {
  background: rgba(20,20,20,0.95) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 16px !important;
  padding: 40px 48px !important;
  max-width: 720px !important;
  margin: 0 auto !important;
}

/* Section Headers in Form */
body.page-id-1826 .wpcf7-form h2 {
  color: #ffffff !important;
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  border-bottom: 2px solid #014EFC !important;
  padding-bottom: 12px !important;
  margin-top: 40px !important;
  margin-bottom: 24px !important;
}

body.page-id-1826 .wpcf7-form h2:first-of-type {
  margin-top: 0 !important;
}

body.page-id-1826 .wpcf7-form h3 {
  color: #ffffff !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  margin-top: 28px !important;
  margin-bottom: 16px !important;
  padding-bottom: 8px !important;
  border-bottom: 1px solid rgba(255,255,255,0.15) !important;
}

/* ============================================
   INPUT FIELDS
   ============================================ */
body.page-id-1826 input[type="text"],
body.page-id-1826 input[type="email"],
body.page-id-1826 input[type="tel"],
body.page-id-1826 input[type="number"],
body.page-id-1826 select,
body.page-id-1826 textarea {
  background: #1a1a1a !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-size: 15px !important;
  width: 100% !important;
  max-width: 100% !important;
}

body.page-id-1826 select {
  max-width: 400px !important;
}

body.page-id-1826 input[type="number"] {
  max-width: 150px !important;
}

body.page-id-1826 textarea {
  min-height: 100px !important;
}

body.page-id-1826 input:focus,
body.page-id-1826 select:focus,
body.page-id-1826 textarea:focus {
  border-color: #014EFC !important;
  box-shadow: 0 0 0 2px rgba(1,78,252,0.2) !important;
  outline: none !important;
}

body.page-id-1826 select option {
  background: #1a1a1a !important;
  color: #ffffff !important;
}

body.page-id-1826 input::placeholder,
body.page-id-1826 textarea::placeholder {
  color: rgba(255,255,255,0.4) !important;
}

/* Labels */
body.page-id-1826 .wpcf7-form label {
  color: #ffffff !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  display: block !important;
  margin-bottom: 6px !important;
  margin-top: 20px !important;
}

/* Required asterisk */
body.page-id-1826 .required {
  color: #ff6b6b !important;
}

/* ============================================
   FORM NOTICE BOXES
   ============================================ */
body.page-id-1826 .wpcf7-form .form-notice,
body.page-id-1826 .wpcf7-form p.form-note,
body.page-id-1826 .wpcf7-form .form-note,
body.page-id-1826 .wpcf7-form em,
body.page-id-1826 .wpcf7-form div[style*="background"],
body.page-id-1826 .wpcf7-form p[style*="background"],
body.page-id-1826 .wpcf7-form div[style*="ebf8ff"],
body.page-id-1826 .wpcf7-form div[style*="f7fafc"] {
  background: rgba(1,78,252,0.12) !important;
  border: none !important;
  border-left: 3px solid #014EFC !important;
  border-radius: 0 8px 8px 0 !important;
  padding: 12px 16px !important;
  margin: 16px 0 !important;
  color: rgba(255,255,255,0.8) !important;
}

body.page-id-1826 .wpcf7-form .form-notice *,
body.page-id-1826 .wpcf7-form .form-note *,
body.page-id-1826 .wpcf7-form p.form-note,
body.page-id-1826 .wpcf7-form em {
  color: rgba(255,255,255,0.8) !important;
  background: transparent !important;
}

body.page-id-1826 .wpcf7-form .form-notice strong,
body.page-id-1826 .wpcf7-form .form-note strong {
  color: #ffffff !important;
}

/* Small helper text under fields */
body.page-id-1826 .wpcf7-form p[style*="font-size: 12px"],
body.page-id-1826 .wpcf7-form p[style*="color: #666"] {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin-top: 6px !important;
  color: rgba(255,255,255,0.5) !important;
  font-size: 13px !important;
}

/* ============================================
   CHECKBOXES & RADIO BUTTONS
   ============================================ */
body.page-id-1826 .wpcf7-list-item-label,
body.page-id-1826 .wpcf7-acceptance label,
body.page-id-1826 .wpcf7-checkbox label,
body.page-id-1826 .wpcf7-radio label {
  color: #ffffff !important;
}

body.page-id-1826 .wpcf7-checkbox .wpcf7-list-item,
body.page-id-1826 .wpcf7-radio .wpcf7-list-item {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 6px !important;
  padding: 10px 14px !important;
  margin: 6px 0 !important;
  transition: background 0.2s !important;
}

body.page-id-1826 .wpcf7-checkbox .wpcf7-list-item:hover,
body.page-id-1826 .wpcf7-radio .wpcf7-list-item:hover {
  background: rgba(255,255,255,0.06) !important;
}

/* Acceptance checkboxes */
body.page-id-1826 .wpcf7-acceptance {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 8px !important;
  padding: 14px 18px !important;
  margin: 10px 0 !important;
}

body.page-id-1826 .wpcf7-acceptance .wpcf7-list-item-label {
  color: #ffffff !important;
  font-weight: 400 !important;
}

/* ============================================
   ACKNOWLEDGMENT SECTION
   ============================================ */
body.page-id-1826 .acknowledgment-section,
body.page-id-1826 .wpcf7-form div[style*="fffaf0"],
body.page-id-1826 .wpcf7-form div[style*="ed8936"] {
  background: rgba(1,78,252,0.12) !important;
  border: 1px solid rgba(1,78,252,0.3) !important;
  border-left: 4px solid #014EFC !important;
  border-radius: 0 12px 12px 0 !important;
  padding: 24px !important;
  margin: 24px 0 !important;
}

body.page-id-1826 .acknowledgment-section h3 {
  color: #ffffff !important;
  border-bottom: 1px solid rgba(255,255,255,0.2) !important;
  margin-top: 20px !important;
}

body.page-id-1826 .acknowledgment-section h3:first-child {
  margin-top: 0 !important;
}

body.page-id-1826 .acknowledgment-section p,
body.page-id-1826 .acknowledgment-section li,
body.page-id-1826 .acknowledgment-section strong {
  color: #ffffff !important;
}

body.page-id-1826 .acknowledgment-section ul {
  padding-left: 20px !important;
  margin: 12px 0 !important;
}

body.page-id-1826 .acknowledgment-section li {
  margin-bottom: 8px !important;
  color: rgba(255,255,255,0.85) !important;
}

/* ============================================
   BUTTONS
   ============================================ */
body.page-id-1826 input[type="submit"],
body.page-id-1826 button[type="submit"] {
  background: #014EFC !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 16px 40px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  margin-top: 24px !important;
}

body.page-id-1826 input[type="submit"]:hover {
  background: #0033A0 !important;
}

/* ============================================
   FILE UPLOAD
   ============================================ */
body.page-id-1826 input[type="file"] {
  background: rgba(255,255,255,0.03) !important;
  border: 2px dashed rgba(255,255,255,0.2) !important;
  border-radius: 8px !important;
  padding: 16px !important;
  color: #ffffff !important;
}

body.page-id-1826 input[type="file"]:hover {
  border-color: #014EFC !important;
  background: rgba(1,78,252,0.05) !important;
}

/* ============================================
   LINKS
   ============================================ */
body.page-id-1826 a {
  color: #15B5FF !important;
}

body.page-id-1826 a:hover {
  color: #ffffff !important;
}

/* ============================================
   VALIDATION & RESPONSE
   ============================================ */
body.page-id-1826 .wpcf7-not-valid {
  border-color: #ff6b6b !important;
}

body.page-id-1826 .wpcf7-not-valid-tip {
  color: #ff6b6b !important;
  font-size: 13px !important;
  margin-top: 4px !important;
}

body.page-id-1826 .wpcf7-response-output {
  background: rgba(1,78,252,0.1) !important;
  border: 1px solid rgba(1,78,252,0.3) !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  padding: 16px !important;
  margin-top: 20px !important;
}

body.page-id-1826 .wpcf7-form.sent .wpcf7-response-output {
  background: rgba(126,197,95,0.15) !important;
  border-color: #7EC55F !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  body.page-id-1826 .config-hero-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
  
  body.page-id-1826 .config-hero-content {
    padding-right: 0;
    text-align: center;
  }
  
  body.page-id-1826 .config-trust-points {
    justify-content: center;
  }
  
  body.page-id-1826 .config-hero-image {
    max-width: 400px;
    margin: 0 auto;
  }
  
  body.page-id-1826 .config-process-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  body.page-id-1826 .config-hero-section h2 {
    font-size: 1.75rem !important;
  }
  
  body.page-id-1826 .wpcf7-form {
    padding: 24px 20px !important;
    margin: 0 16px !important;
  }
  
  body.page-id-1826 .config-intro {
    margin: 0 16px 32px 16px;
  }
  
  body.page-id-1826 .config-card {
    padding: 20px 24px;
  }
  
  body.page-id-1826 input[type="submit"] {
    width: 100% !important;
  }
  
  body.page-id-1826 select {
    max-width: 100% !important;
  }
}
