.elementor-617 .elementor-element.elementor-element-b196d47{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-617 .elementor-element.elementor-element-38edbd8{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}:root{--page-title-display:none;}body.elementor-page-617{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-b196d47 *//* =============================================
   BPP ANIMATION – Contact Section
   WordPress-safe: ct- namespace throughout
   Design: 2-col | info cards + map | form card
   Colors: Primary #5461E3 | Dark #2F3BB9
   Fonts: Montserrat (headings) / Poppins (body)
   ============================================= */

/* ── Scoped reset ── */
.ct-section *,
.ct-section *::before,
.ct-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Demo base (theme provides in WP) ── */
html { scroll-behavior: smooth; }
body {
  background: #f8f9ff;
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #111111;
}

/* =============================================
   SECTION WRAPPER
   ============================================= */
.ct-section {
  width: 100%;
  padding: 100px 0;
  background: #ffffff;
}

/* =============================================
   CONTAINER — 2-column grid
   Left: ~52% | Right: ~44%
   ============================================= */
.ct-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 150px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* =============================================
   LEFT COLUMN
   ============================================= */
.ct-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── 2×2 Info Cards Grid ── */
.ct-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── Individual Card ── */
.ct-card {
  background: #ffffff;
  border: 1.5px solid #e2e6f3;
  border-radius: 18px;
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
  cursor: default;
}

.ct-card:hover {
  box-shadow: 0 8px 32px rgba(84, 97, 227, 0.12);
  transform: translateY(-3px);
  border-color: #c5cdf5;
}

/* Icon circle */
.ct-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #dde2f8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.22s ease;
}

.ct-card:hover .ct-card__icon-wrap {
  background: #c7d0f5;
}

.ct-card__icon {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}

/* Label */
.ct-card__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  line-height: 1.2;
}

/* Detail text */
.ct-card__detail {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #555555;
  line-height: 1.6;
}

/* ── Map ── */
.ct-map {
  width: 100%;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid #e2e6f3;
  /* Subtle shadow to match card style */
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
}

.ct-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  border-radius: 18px;
}

/* =============================================
   RIGHT COLUMN — Form Card
   ============================================= */
.ct-right {
  /* Sticky so form stays visible while left scrolls */
  position: sticky;
  top: 30px;
}

.ct-form-card {
  background: #dde2f8;
  border-radius: 22px;
  padding: 40px 36px 44px;
}

/* ── Form Header ── */
.ct-form-header {
  margin-bottom: 28px;
}

.ct-form-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #3a4ac0;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.ct-form-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: #111111;
  line-height: 1.15;
}

/* ── Form ── */
.ct-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ct-field-group {
  width: 100%;
}

/* ── Inputs & Textarea ── */
.ct-input {
  width: 100%;
  background: #ffffff;
  border: none;
  outline: none;
  border-radius: 10px;
  padding: 14px 18px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #222222;
  line-height: 1.5;
  transition: box-shadow 0.2s ease;
  /* Remove default browser appearance */
  -webkit-appearance: none;
  appearance: none;
}

.ct-input::placeholder {
  color: #9ba5c5;
  font-weight: 400;
}

.ct-input:focus {
  box-shadow: 0 0 0 2.5px rgba(84, 97, 227, 0.35);
}

/* Textarea specific */
.ct-textarea {
  resize: vertical;
  min-height: 130px;
  max-height: 300px;
}

/* Validation states */
.ct-input:invalid:not(:placeholder-shown) {
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.4);
}

.ct-input:valid:not(:placeholder-shown) {
  box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.3);
}

/* ── Status message ── */
.ct-status {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  min-height: 0;
  transition: min-height 0.2s ease;
  color: transparent;
}

.ct-status--success { color: #1a7a3c; }
.ct-status--error   { color: #c0392b; }

/* ── Submit Button ── */
.ct-submit-btn {
  width: 100%;
  padding: 15px 24px;
  background: #2F3BB9;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 50px;        /* full pill */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  transition: background 0.22s ease, transform 0.18s ease, box-shadow 0.22s ease;
  -webkit-appearance: none;
  appearance: none;
  text-decoration: none;
  outline: none;
  letter-spacing: 0.01em;
}

.ct-submit-btn:hover {
  background: #5461E3;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(84, 97, 227, 0.35);
}

.ct-submit-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.ct-submit-btn:focus-visible {
  outline: 3px solid #5461E3;
  outline-offset: 3px;
}

/* Loading spinner (hidden by default) */
.ct-submit-btn__spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: ct-spin 0.6s linear infinite;
  flex-shrink: 0;
}

.ct-submit-btn--loading .ct-submit-btn__spinner {
  display: block;
}

.ct-submit-btn--loading .ct-submit-btn__text {
  opacity: 0.7;
}

@keyframes ct-spin {
  to { transform: rotate(360deg); }
}

/* =============================================
   RESPONSIVE — 1200px (Tablet Large)
   ============================================= */
@media (max-width: 1200px) {
  .ct-container {
    padding: 0 60px;
    gap: 32px;
  }
}

/* =============================================
   RESPONSIVE — 1024px (Tablet)
   Stack columns vertically
   ============================================= */
@media (max-width: 1024px) {
  .ct-section {
    padding: 70px 0;
  }

  .ct-container {
    grid-template-columns: 1fr;
    padding: 0 48px;
    gap: 40px;
  }

  .ct-right {
    position: static;  /* unstick on tablet — stacked layout */
  }

  .ct-form-card {
    padding: 36px 32px 40px;
  }

  .ct-map {
    height: 240px;
  }
}

/* =============================================
   RESPONSIVE — 640px (Mobile)
   ============================================= */
@media (max-width: 640px) {
  .ct-section {
    padding: 60px 0;
  }

  .ct-container {
    padding: 0 20px;
    gap: 32px;
  }

  .ct-cards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .ct-card {
    padding: 22px 14px 20px;
    border-radius: 14px;
    gap: 8px;
  }

  .ct-card__icon-wrap {
    width: 48px;
    height: 48px;
  }

  .ct-card__icon {
    width: 20px;
    height: 20px;
  }

  .ct-card__label {
    font-size: 14px;
  }

  .ct-card__detail {
    font-size: 12px;
  }

  .ct-map {
    height: 200px;
  }

  .ct-form-card {
    padding: 28px 20px 32px;
    border-radius: 18px;
  }

  .ct-form-eyebrow {
    font-size: 12px;
  }

  .ct-input {
    padding: 12px 16px;
    font-size: 14px;
  }

  .ct-submit-btn {
    padding: 14px 20px;
    font-size: 14px;
  }
}

/* =============================================
   RESPONSIVE — 360px (Small Mobile)
   1-col info cards
   ============================================= */
@media (max-width: 400px) {
  .ct-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  .ct-card,
  .ct-submit-btn,
  .ct-input {
    transition: none !important;
  }

  .ct-submit-btn__spinner {
    animation: none !important;
  }
}

/* =============================================
   RESPONSIVE
============================================= */

/* ---------- Tablet ---------- */

@media (max-width:1024px){

    .ct-section{
        padding:80px 0;
    }

    .ct-container{

        display:flex;
        flex-direction:column;

        gap:50px;

        padding:0 64px;

    }

    /* Form first */

    .ct-right{
        order:1;
        position:static;
        width:100%;
    }

    .ct-left{
        order:2;
        width:100%;
    }

    .ct-form-card{

        width:100%;
        max-width:none;

        padding:40px 32px;

    }

    .ct-cards-grid{

        grid-template-columns:repeat(2,1fr);

        gap:18px;

    }

    .ct-map{

        height:320px;

    }

}


/* ---------- Mobile ---------- */

@media (max-width:768px){

    .ct-container{

        padding:0 24px;

        gap:40px;

    }

    .ct-form-card{

        width:100%;
        max-width:none;

        padding:32px 24px;

    }

    .ct-form-title{

        font-size:34px;

    }

    .ct-form{

        gap:16px;

    }

    .ct-input{

        padding:15px 16px;

        font-size:15px;

    }

    .ct-textarea{

        min-height:150px;

    }

    .ct-submit-btn{

        width:100%;

    }

    .ct-cards-grid{

        grid-template-columns:1fr;

        gap:18px;

    }

    .ct-card{

        padding:28px 22px;

    }

    .ct-card__label{

        font-size:20px;

    }

    .ct-card__detail{

        font-size:15px;

    }

    .ct-map{

        height:280px;

        border-radius:14px;

    }

}


/* ---------- Small Mobile ---------- */

@media (max-width:480px){

    .ct-section{

        padding:60px 0;

    }

    .ct-container{

        padding:0 20px;

    }

    .ct-form-card{

        padding:28px 20px;

    }

    .ct-form-title{

        font-size:30px;

    }

    .ct-form-eyebrow{

        font-size:12px;

    }

    .ct-input{

        font-size:14px;

    }

    .ct-card{

        padding:24px 18px;

    }

    .ct-card__icon-wrap{

        width:52px;
        height:52px;

    }

    .ct-map{

        height:240px;

    }

}


/* ---------- Reduce Motion ---------- */

@media (prefers-reduced-motion:reduce){

    .ct-card,
    .ct-submit-btn,
    .ct-input{

        transition:none !important;

    }

    .ct-submit-btn__spinner{

        animation:none !important;

    }

}/* End custom CSS */