  .guided-demo-form-section {
  background: #f8f9fa;
  padding: 100px 0;
  position: relative;
}
.guided-demo-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #2078FF, #0E2041, #2078FF);
}
/* ================= LEFT INTRO CONTENT ================= */
.demo-form-intro {
  padding-right: 30px;
}
.demo-form-intro h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0E2041;
  margin-bottom: 40px;
  line-height: 1.3;
  letter-spacing: 0.5px;
}
.intro-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.intro-points p {
  font-size: 16px;
  font-weight: 400;
  color: #2C3E50;
  line-height: 1.6;
  position: relative;
  padding-left: 0;
}
.intro-points p.highlight {
  font-weight: 600;
  color: #0E2041;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 2px solid rgba(32, 120, 255, 0.3);
}
/* ================= RIGHT FORM ================= */
.guided-contact-form {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 50px 45px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(32, 120, 255, 0.1);
}
/* Form Labels */
.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.required {
  color: #E74C3C;
  font-weight: 700;
}
/* Form Inputs */
.form-input {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: 'Sora', sans-serif;
  color: #2C3E50;
  background: #F8F9FA;
  border: 2px solid #E1E8ED;
  border-radius: 10px;
  outline: none;
  transition: all 0.3s ease;
}
.form-input:focus {
  background: #FFFFFF;
  border-color: #2078FF;
  box-shadow: 0 0 0 4px rgba(32, 120, 255, 0.1);
}
.form-input::placeholder {
  color: #95A5A6;
  font-weight: 300;
}
/* Field Helper Text */
.field-helper {
  display: block;
  font-size: 12px;
  color: #7F8C8D;
  margin-top: 5px;
  font-weight: 300;
}
/* Textarea */
textarea.form-input {
  resize: vertical;
  min-height: 120px;
  font-family: 'Sora', sans-serif;
}
/* ================= CUSTOM CHECKBOX ================= */
.form-check-wrapper {
  margin: 25px 0;
}
.custom-checkbox {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  position: relative;
  padding-left: 35px;
  user-select: none;
}
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  left: 0;
  top: 2px;
  height: 22px;
  width: 22px;
  background: #F8F9FA;
  border: 2px solid #CBD5E0;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.custom-checkbox:hover .checkmark {
  border-color: #2078FF;
  background: rgba(32, 120, 255, 0.05);
}
.custom-checkbox input:checked ~ .checkmark {
  background: #2078FF;
  border-color: #2078FF;
}
.checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.custom-checkbox input:checked ~ .checkmark::after {
  display: block;
}
.checkbox-label {
  font-size: 14px;
  color: #2C3E50;
  line-height: 1.6;
  font-weight: 400;
}
/* ================= LEGAL NOTICE ================= */
.legal-notice {
  background: #F8F9FA;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #2078FF;
}
.legal-notice p {
  font-size: 12px;
  line-height: 1.7;
  color: #5A6C7D;
  margin-bottom: 12px;
}
.legal-notice a {
  color: #2078FF;
  text-decoration: none;
  font-weight: 500;
}
.legal-notice a:hover {
  text-decoration: underline;
}
.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-links a {
  font-size: 13px;
  color: #2078FF;
  text-decoration: underline;
  font-weight: 500;
}
/* ================= SUBMIT BUTTON ================= */
.submit-btn-demo {
  width: 100%;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: #FFFFFF;
  background: linear-gradient(135deg, #2078FF, #0E2041);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(32, 120, 255, 0.3);
}
.submit-btn-demo:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(32, 120, 255, 0.5);
  background: linear-gradient(135deg, #1A5FD6, #0A1A2E);
}
.submit-btn-demo:active {
  transform: translateY(-1px);
}
/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .demo-form-intro {
    padding-right: 0;
    margin-bottom: 50px;
  }
  .demo-form-intro h2 {
    font-size: 32px;
  }
  .guided-contact-form {
    padding: 40px 30px;
  }
}
@media (max-width: 575px) {
  .guided-demo-form-section {
    padding: 60px 0;
  }
  .demo-form-intro h2 {
    font-size: 26px;
  }
  .intro-points p {
    font-size: 15px;
  }
  .guided-contact-form {
    padding: 30px 20px;
  }
  .form-input {
    padding: 12px 14px;
    font-size: 14px;
  }
  .submit-btn-demo {
    padding: 14px 30px;
    font-size: 15px;
  }
}


/* ==========================================
   VIDEO SECTION STYLES
   ========================================== */

.video-section {
    background: #0e1f40;
    padding: 80px 20px;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-card {
    background: #1b5c92;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}

.video-frame video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-content {
    padding: 30px;
}

.video-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.video-content p {
    font-size: 15px;
    color: #e1e1e1;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================
   SOLUTION SECTION STYLES
   ========================================== */

.solution-section {
    background: #f8f9fa;
    padding: 80px 20px;
}

.solution-container {
    max-width: 1200px;
    margin: 0 auto;
}

.solution-heading {
    font-size: 42px;
    font-weight: 700;
    color: #2d3748;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.3;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

/* Large Card (Left) */
.large-card {
    position: relative;
    border-radius: 30px 30px 30px 150px;
    overflow: hidden;
    height: 600px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.large-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.545);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.card-overlay h3 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
}

.card-overlay p {
    font-size: 16px;
    color: white;
    line-height: 1.6;
    max-width: 400px;
    margin: 0;
}

.card-overlay p.mt-3 {
    margin-top: 20px;
}

/* Right Column Cards */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.small-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 285px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.small-card.bottom {
    border-radius: 30px 30px 150px 30px;
}

.small-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small-card .card-overlay {
    padding: 30px;
}

.small-card .card-overlay p {
    font-size: 14px;
    max-width: 350px;
}

/* CTA Button */
.cta-container {
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: #0e1f40;
    color: white;
    font-size: 18px;
    font-weight: 600;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(14, 31, 64, 0.3);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 31, 64, 0.4);
    color: white;
    text-decoration: none;
}

/* ==========================================
   TABLET RESPONSIVE (992px and below)
   ========================================== */

@media (max-width: 992px) {
    /* Video Section */
    .video-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .video-content {
        padding: 25px;
    }

    .video-content h3 {
        font-size: 20px;
    }

    /* Solution Section */
    .solution-heading {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .solution-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .large-card {
        height: 500px;
        border-radius: 30px;
    }

    .card-overlay h3 {
        font-size: 30px;
    }

    .card-overlay p {
        font-size: 15px;
    }

    .small-card {
        height: 350px;
    }

    .small-card.bottom {
        border-radius: 30px;
    }
}

/* ==========================================
   MOBILE RESPONSIVE (768px and below)
   ========================================== */

@media (max-width: 768px) {
    /* Video Section */
    .video-section {
        padding: 50px 15px;
    }

    .video-content {
        padding: 20px;
    }

    .video-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .video-content p {
        font-size: 14px;
    }

    /* Solution Section */
    .solution-section {
        padding: 50px 15px;
    }

    .solution-heading {
        font-size: 28px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .solution-grid {
        gap: 20px;
        margin-bottom: 35px;
    }

    .large-card {
        height: 450px;
        border-radius: 20px;
    }

    .card-overlay {
        padding: 25px 20px;
    }

    .card-overlay h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .card-overlay p {
        font-size: 14px;
        max-width: 100%;
    }

    .small-card {
        height: 320px;
        border-radius: 20px;
    }

    .small-card.bottom {
        border-radius: 20px;
    }

    .small-card .card-overlay {
        padding: 25px 20px;
    }

    .small-card .card-overlay p {
        font-size: 13px;
    }

    .cta-button {
        font-size: 16px;
        padding: 15px 40px;
    }
}

/* ==========================================
   SMALL MOBILE (576px and below)
   ========================================== */

@media (max-width: 576px) {
    /* Video Section */
    .video-section {
        padding: 40px 10px;
    }

    .video-grid {
        gap: 20px;
    }

    .video-card {
        border-radius: 12px;
    }

    .video-content {
        padding: 18px 15px;
    }

    .video-content h3 {
        font-size: 17px;
    }

    .video-content p {
        font-size: 13px;
    }

    /* Solution Section */
    .solution-section {
        padding: 40px 10px;
    }

    .solution-heading {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .large-card {
        height: 400px;
        border-radius: 15px;
    }

    .card-overlay {
        padding: 20px 15px;
    }

    .card-overlay h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .card-overlay p {
        font-size: 13px;
        line-height: 1.5;
    }

    .card-overlay p.mt-3 {
        margin-top: 15px;
    }

    .small-card {
        height: 300px;
        border-radius: 15px;
    }

    .small-card.bottom {
        border-radius: 15px;
    }

    .small-card .card-overlay {
        padding: 20px 15px;
    }

    .small-card .card-overlay p {
        font-size: 12px;
    }

    .cta-button {
        font-size: 15px;
        padding: 14px 35px;
        width: 90%;
        max-width: 300px;
    }

    /* Remove hover effects on mobile */
    .video-card:hover,
    .cta-button:hover {
        transform: none;
    }
}
