/* Start custom CSS for html, class: .elementor-element-3fab9c9 */:root{
    --navy: #0B2545;
    --navy-deep: #081A34;
    --brass: #C9A227;
    --off: #EEF1F5;
    --ink: #1a2332;
    --muted: #5b6472;
    --line: #e2e8f0;
    --bg-light: #fafbfc;
  }
  .contact-page *{ box-sizing:border-box; }
  .contact-page{ font-family:'Hind Siliguri', sans-serif; background: var(--bg-light); }

  .contact-page .container{
    max-width: 1150px;
    margin: 0 auto;
    padding: 70px 24px 80px;
  }

  .contact-grid{
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: stretch;
  }

  /* ===== Contact Info Card ===== */
  .contact-info-card{
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 36px 34px;
    box-shadow: 0 4px 6px -1px rgba(11,37,69,0.03);
  }
  .contact-info-card h2{
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 26px;
    position: relative;
    padding-bottom: 12px;
  }
  .contact-info-card h2::after{
    content:'';
    position:absolute;
    bottom:0; left:0;
    width:46px; height:3px;
    background: var(--brass);
    border-radius:2px;
  }

  .detail-item{ margin-bottom: 26px; }
  .detail-item:last-child{ margin-bottom: 0; }
  .detail-item h4{
    font-size: 15.5px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .detail-item p{
    font-size: 14.5px;
    color: #475569;
    line-height: 1.75;
    padding-left: 24px;
  }
  .detail-item p strong{ color: var(--navy); font-weight: 600; }

  .phone-badge{
    display: inline-block;
    margin-left: 24px;
    background: var(--navy);
    color: var(--brass);
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 10px 20px;
    border-radius: 8px;
  }

  /* ===== Map Box ===== */
  .map-box{


    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #b8c3d1;
    font-size: 14px;
    line-height: 1.7;
    border: 1px dashed rgba(201,162,39,0.4);
  }

  /* ===== Responsive ===== */
  @media (max-width: 900px){
    .contact-grid{ grid-template-columns: 1fr; }

  }
  @media (max-width: 500px){
    .contact-page .container{ padding: 50px 16px 60px; }
    .contact-info-card{ padding: 26px 22px; }
    .phone-badge{ margin-left: 0; margin-top: 8px; display: block; width: fit-content; }
    .detail-item p{ padding-left: 0; }
  }/* End custom CSS */