/* BANNER SECTION */
.contact-banner {
  background: #ebe0f7; /* soft lavender grey */
  padding: 150px 20px 100px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

/* CONTAINER */
.cb-container {
  max-width: 900px;
  margin: auto;
}

/* HEADING */
.contact-banner h1 {
  font-size: 52px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* HIGHLIGHT WORD */
.contact-banner h1 span {
  color: #16a085; /* green accent */
}

/* PARAGRAPH */
.contact-banner p {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 700px;
  margin: auto;
}

/* =========================
   RESPONSIVE
========================= */

/* Tablet */
@media (max-width: 992px) {
  .contact-banner {
    padding: 120px 20px 80px;
  }

  .contact-banner h1 {
    font-size: 42px;
  }

  .contact-banner p {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .contact-banner {
    padding: 100px 15px 60px;
  }

  .contact-banner h1 {
    font-size: 32px;
  }

  .contact-banner p {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* SECTION */
.contact-section {
  padding: 100px 20px;
  background: #f8fafc;
  font-family: "Poppins", sans-serif;
}

/* CONTAINER */
.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* FORM BOX */
.contact-form-box {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form-box h2 {
  margin-bottom: 20px;
  font-size: 22px;
}

/* FORM */
.row {
  display: flex;
  gap: 15px;
}

.field {
  width: 100%;
  margin-bottom: 15px;
}

.field label {
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
  color: #555;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: 0.3s;
}

.field textarea {
  height: 100px;
  resize: none;
}

/* INPUT HOVER */
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #1abc9c;
  outline: none;
}

/* BUTTON */
.send-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #16a085, #27ae60);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.send-btn:hover {
  transform: translateY(-2px);
}

/* RIGHT SIDE */
.contact-info h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.info-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

/* INFO CARD */
.info-card {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 15px;
  gap: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
  transition: 0.3s;
}

.info-card:hover {
  transform: translateY(-3px);
}

/* ICON */
.icon {
  background: #e6f7f3;
  color: #16a085;
  font-size: 20px;
  padding: 10px;
  border-radius: 10px;
}

/* TEXT */
.info-card h4 {
  margin: 0;
  font-size: 14px;
}

.highlight {
  color: #16a085;
  font-weight: 600;
  font-size: 14px;
}

.info-card span {
  font-size: 12px;
  color: #777;
}

/* ARROW */
.arrow {
  margin-left: auto;
  color: #16a085;
}

/* MAP */
.map-box {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.map-box iframe {
  width: 100%;
  height: 200px;
  border: none;
}

/* ======================
   RESPONSIVE
====================== */

/* Tablet */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
  }

  .row {
    flex-direction: column;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .contact-section {
    padding: 70px 15px;
  }

  .contact-info h2 {
    font-size: 22px;
  }
}

.custom-select {
  position: relative;
  width: 100%;
  font-family: "Poppins", sans-serif;
}

/* LABEL */
.custom-select label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: #444;
}

/* SELECT BOX */
.select-box {
  background: #fff;
  border: 1px solid #ddd;
  padding: 14px 16px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}

.select-box:hover {
  border-color: #16a085;
}

/* ARROW */
.arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid #16a085;
  border-bottom: 2px solid #16a085;
  border-radius: 2px;
  transform: rotate(45deg);
  transition: 0.3s ease;
}
/* ROTATE ARROW WHEN OPEN */
.select-box.active .arrow {
  transform: rotate(-135deg);
}

/* DROPDOWN */
.options {
  position: absolute;
  width: 100%;
  background: #fff;
  border-radius: 14px;
  margin-top: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  display: none;
  z-index: 10;
}

/* SHOW */
.options.show {
  display: block;
}

/* OPTION */
.option {
  padding: 14px 16px;
  cursor: pointer;
  transition: 0.25s;
  font-size: 14px;
}

/* HOVER */
.option:hover {
  background: #f3f4f6;
}

/* ACTIVE (LIKE YOUR PURPLE TOP ITEM) */
.option.active {
  background: #dcd4eb;
  color: #5b3ea6;
  font-weight: 500;
  border-radius: 10px;
  margin: 6px;
}

/* MOBILE */
@media (max-width: 576px) {
  .select-box {
    padding: 12px;
  }

  .option {
    padding: 12px;
  }
}

/* SECTION */
.cta-section {
  width: 100%;
  background: #1f9d7a; /* your green */
  padding: 80px 0;
}
.cta-container-contact {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}
/* TITLE */
.cta-title {
  color: #0f172a;
  font-size: 34px;
  margin-bottom: 40px;
}

.cta-title span {
  color: #f5f5f5;
}

/* GRID */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.cta-card {
  background: #f3f4f6;
  padding: 35px 25px;
  border-radius: 16px;

  display: flex;
  flex-direction: column;
  height: 100%; /* important */

  transition: 0.3s;
}
/* SUBTLE GLOW EFFECT */
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(22,160,133,0.15), transparent);
  opacity: 0;
  transition: 0.4s;
}

/* HOVER */
.cta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.cta-card:hover::before {
  opacity: 1;
}

/* ICON */
/* ICON */
.cta-icon {
  font-size: 26px;
  background: #d1f3ec;
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* LINK */
.cta-card a {
  margin-top: auto; /* MAGIC LINE ✨ */
  color: #16a085;
  text-decoration: none;
  font-weight: 500;
}
/* TEXT */
.cta-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111827;
}

.cta-card p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 15px;
}

/* LINK */
.cta-link {
  font-size: 15px;
  color: #16a085;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

/* ARROW ANIMATION */
.cta-link .arrow {
  transition: transform 0.3s ease;
}

.cta-link:hover .arrow {
  transform: translateX(6px);
}

/* ======================
   RESPONSIVE
====================== */

/* Tablet */
@media (max-width: 992px) {
  .cta-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .cta-title {
    font-size: 26px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }
}
/* PANEL */
.ch-connect-panel{
    background:#fff;
    border-radius:24px;
    padding:32px;
    box-shadow:0 15px 40px rgba(15,23,42,.08);
}

/* HEADER */
.ch-connect-head{
    margin-bottom:25px;
}

.ch-connect-tag{
    display:inline-block;
    padding:8px 14px;
    background:#e8f8f3;
    color:#0ea37f;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
    margin-bottom:12px;
}

.ch-connect-head h2{
    font-size:34px;
    font-weight:700;
    color:#111827;
    margin-bottom:12px;
}

.ch-connect-head p{
    color:#6b7280;
    line-height:1.7;
    margin:0;
}

/* LIST */
.ch-connect-list{
    display:flex;
    flex-direction:column;
    gap:16px;
}

/* CARD */
.ch-connect-item{
    display:flex;
    align-items:center;
    gap:18px;
    background:#f8fafc;
    border:1px solid #edf2f7;
    border-radius:18px;
    padding:18px;
    text-decoration:none;
    transition:.35s;
}

.ch-connect-item:hover{
    transform:translateY(-4px);
    background:#fff;
    border-color:#0ea37f;
    box-shadow:0 12px 30px rgba(14,163,127,.12);
}

/* ICON */
.ch-connect-icon{
    width:64px;
    height:64px;
    min-width:64px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:linear-gradient(135deg,#e8f8f3,#d7fff1);
    color:#0ea37f;
    font-size:24px;
}

/* CONTENT */
.ch-connect-content{
    flex:1;
}

.ch-connect-content h4{
    margin:0 0 5px;
    font-size:15px;
    color:#111827;
}

.ch-connect-content h5{
    margin:0 0 6px;
    font-size:20px;
    font-weight:700;
    color:#0ea37f;
}

.ch-connect-content span{
    color:#6b7280;
    font-size:14px;
}

/* ARROW */
.ch-connect-arrow{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#fff;
    color:#0ea37f;
    transition:.3s;
}

.ch-connect-item:hover .ch-connect-arrow{
    transform:translateX(6px);
}

/* MAP */
.ch-connect-map{
    margin-top:24px;
    border-radius:20px;
    overflow:hidden;
    height:280px;
}

.ch-connect-map iframe{
    width:100%;
    height:100%;
    border:0;
}

/* TABLET */
@media(max-width:768px){

    .ch-connect-panel{
        padding:24px;
    }

    .ch-connect-head h2{
        font-size:28px;
    }

    .ch-connect-content h5{
        font-size:17px;
    }

}

/* MOBILE */
@media(max-width:576px){

    .ch-connect-item{
        padding:15px;
        gap:12px;
    }

    .ch-connect-icon{
        width:55px;
        height:55px;
        min-width:55px;
        font-size:20px;
    }

    .ch-connect-content h5{
        font-size:15px;
    }

    .ch-connect-content span{
        font-size:13px;
    }

    .ch-connect-arrow{
        display:none;
    }

    .ch-connect-map{
        height:220px;
    }

}