/* =========================================================
   REQUEST DEMO – PAGE SCOPED STYLES
   This file MUST be loaded after main.css
   ========================================================= */

/* -------- Page isolation -------- */
.request-demo-page {
    background: #ffffff;
  }
  
  /* -------- Hero section -------- */
  .request-demo-hero {
    background: linear-gradient(
      180deg,
      #cdfff3 0%,
      #f4fbff 100%
    );
    padding: 120px 0 80px 0;
    position: relative;
  }
  
  /* Soft depth */
  .request-demo-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      circle at top,
      rgba(0, 194, 166, 0.08),
      transparent 60%
    );
    pointer-events: none;
  }
  
  /* -------- Layout wrapper (replaces .container) -------- */
  .request-demo-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }
  
  /* -------- Heading & text -------- */
  .request-demo-hero h1 {
    text-align: center;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .request-demo-hero p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px auto;
    color: #555;
  }
  
  /* -------- Card -------- */
  .request-demo-card {
    background: #ffffff;
    max-width: 900px;
    margin: 0 auto;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease-out forwards;
  }
  
  /* Accessibility */
  @media (prefers-reduced-motion: reduce) {
    .request-demo-card {
      animation: none;
      opacity: 1;
      transform: none;
    }
  }
  
  /* -------- Form controls -------- */
  .request-demo-card input,
  .request-demo-card select,
  .request-demo-card textarea {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 14px 16px;
    font-size: 16px;
  }
  
  .request-demo-card input:focus,
  .request-demo-card select:focus,
  .request-demo-card textarea:focus {
    outline: none;
    border-color: #00c2a6;
    box-shadow: 0 0 0 3px rgba(0,194,166,0.15);
  }
  
  /* -------- Neutralize Bootstrap / MDB layout -------- */
  .request-demo-card .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  .request-demo-card .col {
    padding-left: 8px;
    padding-right: 8px;
  }
  
  /* -------- CTA button -------- */
  .request-demo-card .btn.btn-default {
    width: 100%;
    max-width: 360px;
    margin: 32px auto 0 auto;
    display: block;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .request-demo-card .btn.btn-default:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }
  
  /* -------- Footer note -------- */
  .request-demo-note {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-top: 24px;
  }
  
  /* -------- Animation -------- */
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* -------- Mobile -------- */
  @media (max-width: 768px) {
    .request-demo-hero {
      padding: 80px 0 60px 0;
    }
  
    .request-demo-inner {
      padding: 0 16px;
    }
  
    .request-demo-card {
      padding: 24px;
    }
  }

  body.request-demo .container,
  body.request-demo .row {
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body.request-demo .form-outline {
    width: 100%;
  }
  
  body.request-demo .form-outline .form-control {
    width: 100%;
  }
  

  