/* ============================================
   8. QUOTE REQUEST PAGE (ID: 1796) - DARK THEME
   Module: 07-quote-request.css
   ============================================ */

/* ---------- 8.1 Base Dark Theme ---------- */
body.page-id-1796 {
  background: #0a0a0a !important;
}

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

body.page-id-1796 .entry-content {
  padding: 0 !important;
}

body.page-id-1796 .entry-title {
  display: none; /* Hidden - using hero section instead */
}

body.page-id-1796 .ast-container {
  max-width: 100% !important;
  padding: 0 !important;
}

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

/* Links */
body.page-id-1796 a {
  color: #15B5FF !important;
}

/* ---------- 8.2 Hero Section ---------- */
.quote-request-hero {
  background: linear-gradient(135deg, rgba(1,78,252,0.08) 0%, rgba(0,51,160,0.05) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 60px 40px 50px;
  margin-bottom: 0;
}

.quote-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(1,78,252,0.15);
  border: 1px solid rgba(1,78,252,0.3);
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 24px;
}

.quote-hero-badge .badge-icon {
  font-size: 16px;
}

.quote-hero-badge .badge-text {
  color: var(--jrv-sky);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* FIX 1: Hero title - all sky blue */
.quote-hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #15B5FF !important;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.quote-hero-title .highlight {
  color: #15B5FF !important;
  -webkit-text-fill-color: #15B5FF !important;
}

.quote-hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7) !important;
  margin: 0 auto 40px;
  max-width: 650px;
}

/* Hero Features Grid */
.quote-hero-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  min-width: 220px;
}

.feature-item .feature-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.feature-item .feature-icon-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--jrv-sky);
  background: rgba(1,78,252,0.15);
  border: 1px solid rgba(1,78,252,0.3);
  border-radius: 6px;
  padding: 8px 10px;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.feature-item .feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-item .feature-text strong {
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 600;
}

.feature-item .feature-text span {
  color: rgba(255,255,255,0.5) !important;
  font-size: 13px;
}

/* ---------- 8.3 Progress Steps ---------- */
.quote-steps-wrapper {
  background: var(--jrv-dark);
  padding: 30px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.quote-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
  border: 2px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.step.completed .step-number {
  background: var(--jrv-green);
  color: #000000;
  border-color: var(--jrv-green);
}

.step.active .step-number {
  background: var(--jrv-blue);
  color: #ffffff;
  border-color: var(--jrv-blue);
  box-shadow: 0 0 20px rgba(1,78,252,0.4);
}

.step-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.4) !important;
  white-space: nowrap;
}

.step.completed .step-label,
.step.active .step-label {
  color: #ffffff !important;
}

.step-connector {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.1);
  margin: 0 16px;
  margin-bottom: 28px;
  max-width: 80px;
}

.step-connector.completed {
  background: var(--jrv-green);
}

/* ---------- 8.4 Section Wrappers ---------- */
.quote-section-wrapper {
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.quote-section-header {
  margin-bottom: 24px;
  text-align: center;
}

.section-title {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff !important;
  margin: 0 0 12px 0;
  border: none !important;
}

.section-title .title-icon {
  font-size: 28px;
}

.section-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.6) !important;
  margin: 0 auto;
  max-width: 500px;
}

.customer-info-section {
  padding-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ---------- 8.5 Trust Section ---------- */
.quote-trust-section {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 30px 40px;
  margin-top: 40px;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-item .trust-icon {
  font-size: 20px;
}

.trust-item .trust-text {
  font-size: 14px;
  color: rgba(255,255,255,0.6) !important;
}

/* ---------- 8.6 Cart Table ---------- */
body.page-id-1796 table {
  background: rgba(20,20,20,0.95) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 12px !important;
  border-collapse: separate;
  border-spacing: 0;
}

body.page-id-1796 .shop_table,
body.page-id-1796 .gpls-woo-rfq-checkout-wrapper table {
  max-width: 800px;
  margin: 0 auto;
}

body.page-id-1796 th {
  background: rgba(255,255,255,0.08) !important;
  color: rgba(255,255,255,0.8) !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 14px 16px !important;
}

body.page-id-1796 td {
  color: #ffffff !important;
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
  padding: 16px !important;
  vertical-align: middle;
}

body.page-id-1796 .product-thumbnail img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}

body.page-id-1796 .product-name {
  font-weight: 600;
  font-size: 15px;
}

body.page-id-1796 .product-name a {
  color: #ffffff !important;
}

body.page-id-1796 .product-name a:hover {
  color: #15B5FF !important;
}

/* Quantity Selector */
body.page-id-1796 .quantity {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  overflow: hidden;
}

body.page-id-1796 .quantity button,
body.page-id-1796 .quantity .minus,
body.page-id-1796 .quantity .plus {
  width: 32px;
  height: 36px;
  background: rgba(255,255,255,0.08) !important;
  border: none !important;
  color: #ffffff !important;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s;
}

body.page-id-1796 .quantity button:hover {
  background: rgba(1,78,252,0.3) !important;
}

body.page-id-1796 .quantity input,
body.page-id-1796 .quantity input.qty {
  width: 50px !important;
  height: 36px;
  text-align: center;
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 15px;
}

/* Update Quote Button */
body.page-id-1796 .button[name="update_quote"],
body.page-id-1796 button[name="update_cart"] {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: rgba(255,255,255,0.7) !important;
  padding: 10px 20px !important;
  font-size: 13px !important;
  border-radius: 6px !important;
}

body.page-id-1796 .button[name="update_quote"]:hover,
body.page-id-1796 button[name="update_cart"]:hover {
  border-color: var(--jrv-blue) !important;
  color: #ffffff !important;
  background: rgba(1,78,252,0.1) !important;
}

/* ---------- 8.7 Customer Information Form ---------- */
body.page-id-1796 .gpls-woo-rfq-form-wrapper,
body.page-id-1796 [class*="customer-info"],
body.page-id-1796 .wpcf7-form {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(20,20,20,0.95) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 16px !important;
  padding: 40px !important;
}

/* FIX 2: Customer Information header - white */
body.page-id-1796 .gpls-woo-rfq-form-wrapper h1,
body.page-id-1796 .gpls-woo-rfq-form-wrapper h2,
body.page-id-1796 h1.woo-rfq-customer-info-header,
body.page-id-1796 .woo-rfq-customer-info-header,
body.page-id-1796 [class*="customer-info"] h1,
body.page-id-1796 [class*="customer-info"] h2 {
  color: #ffffff !important;
  font-size: 32px !important;
  font-weight: 700 !important;
  text-align: center !important;
  margin-bottom: 30px !important;
}

/* Form Section Headers */
body.page-id-1796 .wpcf7-form h3,
body.page-id-1796 .gpls-woo-rfq-form-wrapper h3 {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  padding-bottom: 12px !important;
  margin-bottom: 20px !important;
  border-bottom: 2px solid var(--jrv-blue) !important;
}

/* Labels */
body.page-id-1796 label {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin-bottom: 6px !important;
  display: block;
}

/* Input Fields */
body.page-id-1796 input[type="text"],
body.page-id-1796 input[type="email"],
body.page-id-1796 input[type="tel"],
body.page-id-1796 input[type="number"],
body.page-id-1796 select,
body.page-id-1796 textarea {
  background: #1a1a1a !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  color: #ffffff !important;
  border-radius: 8px !important;
  padding: 14px 16px !important;
  font-size: 15px !important;
  transition: border-color 0.2s, box-shadow 0.2s;
}

body.page-id-1796 input:focus,
body.page-id-1796 select:focus,
body.page-id-1796 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-1796 select option {
  background: #1a1a1a !important;
  color: #ffffff !important;
}

body.page-id-1796 textarea {
  min-height: 120px !important;
  resize: vertical !important;
}

/* Radio/checkbox labels */
body.page-id-1796 .wpcf7-list-item-label,
body.page-id-1796 .gfield_radio label,
body.page-id-1796 .gfield_checkbox label,
body.page-id-1796 .gchoice label,
body.page-id-1796 .gchoice_label,
body.page-id-1796 .ginput_container_radio label {
  color: #ffffff !important;
}

/* ---------- 8.8 Consent Boxes ---------- */
/* FIX 3: Acceptance boxes - consistent width and alignment */
body.page-id-1796 .wpcf7-acceptance {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 10px !important;
  padding: 16px 20px !important;
  margin: 12px 0 !important;
  transition: border-color 0.2s;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

body.page-id-1796 .wpcf7-acceptance:hover {
  border-color: rgba(1,78,252,0.3) !important;
}

body.page-id-1796 .wpcf7-acceptance label {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  font-weight: 400 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  cursor: pointer;
  margin: 0 !important;
  width: 100% !important;
}

body.page-id-1796 .wpcf7-acceptance input[type="checkbox"] {
  width: 20px !important;
  min-width: 20px !important;
  height: 20px !important;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--jrv-blue);
}

body.page-id-1796 .wpcf7-acceptance .wpcf7-list-item-label {
  flex: 1 !important;
}

/* ---------- 8.9 Buttons ---------- */
body.page-id-1796 .button,
body.page-id-1796 input[type="submit"],
body.page-id-1796 button[type="submit"] {
  background: #014EFC !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 8px !important;
}

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

/* Primary Submit Button */
body.page-id-1796 .wpcf7-form input[type="submit"],
body.page-id-1796 .gpls-woo-rfq-form-wrapper input[type="submit"] {
  width: 100%;
  padding: 18px 40px !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, var(--jrv-blue) 0%, var(--jrv-deep-blue) 100%) !important;
  border: none !important;
  border-radius: 10px !important;
  margin-top: 30px !important;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

body.page-id-1796 .wpcf7-form input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(1,78,252,0.35) !important;
}

/* ---------- 8.10 Info Boxes - Blue Theme ---------- */
body.page-id-1796 blockquote,
body.page-id-1796 .wp-block-quote,
body.page-id-1796 .woocommerce-info {
  background: rgba(1,78,252,0.15) !important;
  border: none !important;
  border-left: 4px solid #014EFC !important;
  color: #ffffff !important;
}

body.page-id-1796 blockquote *,
body.page-id-1796 blockquote a {
  color: #ffffff !important;
}

body.page-id-1796 .gsection_description,
body.page-id-1796 .gfield_description,
body.page-id-1796 .gfield_html,
body.page-id-1796 .form-notice,
body.page-id-1796 div[style*="background"],
body.page-id-1796 p[style*="background"],
body.page-id-1796 div[style*="#fff3cd"],
body.page-id-1796 div[style*="#fffbeb"],
body.page-id-1796 div[style*="#fff8e1"],
body.page-id-1796 div[style*="#ebf8ff"],
body.page-id-1796 div[style*="#e3f2fd"],
body.page-id-1796 div[style*="rgb(255, 243, 205)"],
body.page-id-1796 div[style*="rgb(235, 248, 255)"],
body.page-id-1796 div[style*="rgb(255, 248, 225)"] {
  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 8px 8px 0 !important;
  padding: 12px 16px !important;
}

body.page-id-1796 .gsection_description *,
body.page-id-1796 .gfield_description *,
body.page-id-1796 .gfield_html *,
body.page-id-1796 .form-notice *,
body.page-id-1796 div[style*="background"] *,
body.page-id-1796 div[style*="background"] strong,
body.page-id-1796 div[style*="background"] span,
body.page-id-1796 div[style*="background"] p,
body.page-id-1796 div[style*="background"] li {
  color: #ffffff !important;
}

/* Site Readiness Box */
body.page-id-1796 .site-requirements-box {
  background: linear-gradient(135deg, rgba(1,78,252,0.12) 0%, rgba(0,51,160,0.08) 100%) !important;
  border: 1px solid rgba(1,78,252,0.25) !important;
  border-left: 4px solid var(--jrv-blue) !important;
  border-radius: 0 12px 12px 0 !important;
  padding: 20px 24px !important;
  margin: 20px 0 !important;
}

body.page-id-1796 .site-requirements-box ul {
  margin: 12px 0;
  padding-left: 20px;
}

body.page-id-1796 .site-requirements-box li {
  color: rgba(255,255,255,0.85) !important;
  margin-bottom: 8px;
  line-height: 1.5;
}

/* Warning Notice */
body.page-id-1796 .restocking-warning {
  color: #ff9f43 !important;
  display: block;
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(255,159,67,0.1);
  border-radius: 8px;
  border: 1px solid rgba(255,159,67,0.3);
}

/* ---------- 8.11 Responsive ---------- */
@media (max-width: 768px) {
  .quote-request-hero {
    padding: 40px 20px 35px;
  }
  
  .quote-hero-title {
    font-size: 28px;
  }
  
  .quote-hero-desc {
    font-size: 16px;
  }
  
  .quote-hero-features {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-item {
    width: 100%;
    max-width: 300px;
  }
  
  .quote-steps-wrapper {
    padding: 20px;
  }
  
  .step-label {
    font-size: 11px;
  }
  
  .quote-section-wrapper {
    padding: 30px 20px;
  }
  
  .section-title {
    font-size: 20px;
  }
  
  .trust-items {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  
  body.page-id-1796 .gpls-woo-rfq-form-wrapper,
  body.page-id-1796 .wpcf7-form {
    padding: 24px !important;
  }
}
