/* =========================================
CONTACT SECTION
========================================= */

#contact-section{
  padding:70px 20px;
  background:#f5f7fb;
}

.contact-wrapper{
  max-width:1200px;
  margin:auto;

  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:30px;
  align-items:start;
}

/* =========================================
LEFT CONTENT
========================================= */

.contact-content{
  background:#fff;
  border-radius:20px;
  padding:40px;
  box-shadow:0 8px 35px rgba(0,0,0,.05);
}

.contact-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;

  background:#e8f1ff;
  color:#2152A3;

  padding:10px 18px;
  border-radius:999px;

  font-size:14px;
  font-weight:600;

  margin-bottom:20px;
}

.contact-title{
  font-size:42px;
  line-height:1.2;
  margin-bottom:20px;
  color:#111827;
}

.contact-description{
  color:#555;
  line-height:1.8;
  margin-bottom:18px;
  font-size:15px;
}

/* =========================================
GRID
========================================= */

.contact-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
  margin-top:35px;
}

.contact-card{
  background:#fafafa;
  border:1px solid #edf0f5;
  border-radius:16px;

  padding:22px;
  position:relative;

  display:flex;
  gap:16px;
  align-items:flex-start;

  transition:.25s ease;
}

.contact-card:hover{
  transform:translateY(-4px);
  box-shadow:0 10px 25px rgba(0,0,0,.06);
  background:#fff;
}

.contact-icon{
  width:50px;
  height:50px;

  min-width:50px;

  border-radius:14px;

  background:linear-gradient(135deg,#2152A3,#147508);

  display:flex;
  align-items:center;
  justify-content:center;

  color:#fff;
  font-size:18px;
}

.contact-info{
  flex:1;
}

.contact-label{
  display:block;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  color:#888;
  margin-bottom:6px;
}

.contact-value{
  font-size:15px;
  color:#222;
  line-height:1.6;
  word-break:break-word;
}

/* =========================================
COPY ICON
========================================= */

.copy-indicator{
  opacity:0;
  transition:.2s ease;
  color:#888;
  cursor:pointer;
}

.copy-contact:hover .copy-indicator{
  opacity:1;
}

/* =========================================
BUTTONS
========================================= */

.contact-actions{
  display:flex;
  gap:16px;
  margin-top:40px;
  flex-wrap:wrap;
}

.contact-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:14px 22px;

  border-radius:12px;

  text-decoration:none;
  font-weight:600;

  transition:.25s ease;
}

.primary-btn{
  background:#2152A3;
  color:#fff;
}

.primary-btn:hover{
  background:#173d7a;
}

.whatsapp-btn{
  background:#147508;
  color:#fff;
}

.whatsapp-btn:hover{
  background:#0f5d06;
}

/* =========================================
RIGHT PANEL
========================================= */

.contact-side-panel{
  position:sticky;
  top:100px;
}

.side-panel-card{
  background:linear-gradient(135deg,#2152A3,#147508);
  color:#fff;

  border-radius:20px;
  overflow:hidden;

  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.panel-header{
  padding:24px;
  font-size:20px;
  font-weight:700;

  border-bottom:1px solid rgba(255,255,255,.15);

  display:flex;
  align-items:center;
  gap:12px;
}

.panel-body{
  padding:24px;
}

.feature-item{
  display:flex;
  align-items:flex-start;
  gap:12px;

  margin-bottom:18px;

  line-height:1.7;
  font-size:15px;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:900px){

  .contact-wrapper{
    grid-template-columns:1fr;
  }

  .contact-title{
    font-size:32px;
  }

  .contact-content{
    padding:30px 24px;
  }

}


/* =========================================
TOAST
========================================= */

#contact-toast{
  position:fixed;

  bottom:30px;
  right:30px;

  background:#111827;
  color:#fff;

  padding:14px 18px;

  border-radius:12px;

  display:flex;
  align-items:center;
  gap:10px;

  font-size:14px;
  font-weight:500;

  z-index:99999;

  opacity:0;
  transform:translateY(20px);

  transition:.3s ease;
}

#contact-toast.show{
  opacity:1;
  transform:translateY(0);
}