@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Noto+Sans:wght@600;700&display=swap');

:root {
  --brand: #82534A;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e5e7eb;
  --bg: #FFFCFA;
  --gold-light: #9D7967;
}
element.style {
	background-color: #FFFCFA !important}
.tdp {
  max-width: 100%;
  margin: 0 auto;
  padding: 16px;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
	background-color: #FFFCFA !important;
}
.tdp-main {
  max-width: 1500px;
  margin: 0 auto;
	 padding: 16px;
}
input#form-name{
	background-color:#FFFCFA !important;
}
input#form-email{
	background-color:#FFFCFA !important;
}
textarea#form-message{
	background-color:#FFFCFA !important;
}
/* --- FILTER BAR --- */
.tdp-topbar {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.tdp-topbar::-webkit-scrollbar { display: none; }

.tdp-pill {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  color: #000;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border .15s ease;
  text-align: center;
  font-family: 'Inter', sans-serif;
	margin-top:-20px;
}
.tdp-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.tdp-pill.active {
  background: var(--gold-light);
  color: #fff;
  border-color: var(--gold-light);
}
.tdp-pill--primary {
  background: var(--gold-light);
  color: #fff;
  border-color: var(--gold-light);
}
.tdp-pill--primary:hover {
  background: var(--brand)!important;
  color: #fff !important;
  border-color: var(--brand);
}
.tdp-pill:active {
  background: var(--brand)!important;
  color: #fff;
  border-color: var(--brand);
}


/* --- RESULTS --- */
.tdp-results {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.tdp-card {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 24px;
	background-color: #FFFCFA !important;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
}
.tdp-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.tdp-card-left {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex: 1 1 auto;
}
.tdp-avatar {
  width: 160px;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  flex: 0 0 160px;
  background: #f8fafc;
}
.tdp-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
	object-position: top center;
  display: block;
}
.tdp-card-main { display: flex; flex-direction: column; gap: 8px; }
.tdp-name { 
  margin: 0; 
  font-size: 28px; 
  line-height: 1.2; 
  color: var(--gold-light); 
  font-family: 'Inter', sans-serif; 
  font-weight: 400 !important; 
}

.tdp-card .tdp-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
  color: var(--text);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.tdp-meta .tdp-check-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid #d3d3d3;
  background: transparent;
}

.tdp-meta .tdp-check-circle span {
  color: #9D7967;
  font-size: 10px;
  line-height: 1;
}

.tdp-card .tdp-type-text {
  color: #0F0A00B8;
  font-weight: 500;
  font-size: 14px;
}


.tdp-submeta { color: var(--muted); display: flex; align-items: center; gap: 8px; font-family: 'Inter', sans-serif; }
.tdp-subitem {
/*   background-color: #B96E601F; */
  padding: 4px 8px;
  border-radius: 20px;
  display: flex;
  align-items: center;
}

.tdp-dot { opacity: .5; }
.tdp-bio { color: #334155; margin: 6px 0 0 0; font-family: 'Inter', sans-serif;
padding-right: 170px;}

.tdp-card-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  justify-content: center;
  min-width: 220px;
}
.tdp-phone {
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  color: var(--text);
  font-family: 'Inter', sans-serif;
}
.tdp-phone:hover { text-decoration: underline; }

/* Force Email + View buttons to be row-wise */
.tdp-actions {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: flex-start;
  width: auto;
}


/* Buttons */
.tdp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px ;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border .15s ease;
}
.tdp-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
  color: #fff;
	background: #82534A !important;
}

/* View button */
.tdp-actions .tdp-view {
  background: #fff;
  color: #000;
  border: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
 padding: 10px 20px;
min-width: 120px;
}
.tdp-actions .tdp-view:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

/* Email button */
.tdp-actions a[href^="mailto:"] {
  background: #fff;
  color: #000;
  border: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
 padding: 10px 20px;
min-width: 100px;
}
.tdp-actions a[href^="mailto:"]:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

/* Outline button */
.tdp-btn-outline { background: #fff; color: var(--brand); font-family: 'Inter', sans-serif; }
.tdp-btn-outline:hover { color: #fff; background: var(--brand); }

/* --- FILTER MODAL --- */
.tdp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  opacity: 0;
  visibility: hidden; 
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: opacity .2s ease, visibility .2s ease;
  z-index: 999999;
  padding: 16px;
}

.tdp-overlay.is-open { 
  opacity: 1; 
  visibility: visible; 
}

.tdp-overlay .tdp-modal {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 700px; 
  background: #fff;
  border-left: 1px solid var(--border);
  box-shadow: -6px 0 20px rgba(0,0,0,.15);
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  animation: slideInRight2 .3s ease forwards;
	 padding: 40px 20px 20px 20px;
}


@keyframes slideInRight2 {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.tdp-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.tdp-modal-body h3 { 
  font-family: 'inter';
font-weight: 400 !important ;
  font-size: 22px
  line-height: 25px 
  color: #0F0A00 !important;
}

.tdp-modal-close {
  position: absolute;
  top: 8px;
  right: 20px;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #000 !important;
  border: 1px solid #000 !important;

}
.tdp-modal-close:hover {
color: #fff !important;
  background-color: #9D7967!important;
  border-color: var(--light-gold) !important;
}
.tdp-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.tdp-field > label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
  color: var(--gold-light);
}

.tdp-field select,
.tdp-field input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
}

.tdp-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 24px;
  padding: 20px;
}

.tdp-field {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.tdp-field:last-child {
  border-bottom: none;
}

.tdp-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.tdp-pill-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #000;
  cursor: pointer;
}

.tdp-pill-group input[type="checkbox"] {
  width: 25px;
  height: 25px;
  margin: 0;
  cursor: pointer;
}



/* --- DETAIL MODAL --- */
#tdp-detail-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: #FFFCFA;
  z-index: 9999999;   
/*   align-items: center;
  justify-content: center; */
  padding: 25px;
  overflow-y: auto;
}
#tdp-detail-modal.is-open { 
	display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}

/* #tdp-detail-modal .tdp-modal-content {

position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 16px;
  max-width: 800px;
  width: 90%;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,.2);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
#tdp-detail-modal .tdp-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  cursor: pointer;
}
#tdp-detail-modal .tdp-modal-body {
  display: flex;
  flex-direction: row;
  gap: 24px;
  width: 100%;
  align-items: flex-start !important;
}
#tdp-detail-modal .tdp-modal-left img {
 max-width: 100%;
  max-height:500px;
  width: auto;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
 display: block;
}
#tdp-detail-modal .tdp-modal-right { flex: 1; }
#tdp-detail-modal h3, 
#tdp-detail-modal h4 {
  font-family: 'Noto Sans', sans-serif;
} */
/* Clear Filters + Clear All buttons */
#tdp-clear-filters,
#tdp-clear-all {
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 6px 14px;
  background: #fff;
  color: #000;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

#tdp-clear-filters:hover,
#tdp-clear-all:hover {
  background: #82534A;
  color: #fff;
  border-color: #82534A;
}
.tdp-filter-tag {
  display: inline-flex;
  align-items: center;
  margin: 0 6px 6px 0;
  padding: 4px 10px;
  background: #eee;
  border-radius: 16px;
  font-size: 13px;
}

.tdp-tag-remove {
  margin-left: 6px;
  cursor: pointer;
  font-weight: bold;
}

.tdp-tag-remove:hover {
  color: #82534A;
}



/* --- Responsive --- */


@media (max-width: 600px) {
  .tdp-topbar {
 flex-wrap: wrap !important; justify-content: center;
  }

  .tdp-pill {
    flex: 1 1 45%;
    max-width: 45%;
    text-align: center;
  }

}
/* === OVERRIDE: Therapist Card Layout (compact style) === */
.tdp .tdp-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;  
  border:0px;
  border-bottom: 1px solid #e5e5e5;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
}


.tdp .tdp-card-left {
  display: flex;
  gap: 18px;
  align-items: center;
  flex: 1;
}

.tdp .tdp-avatar {
  width: 140px;
  height: 160px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}

.tdp .tdp-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tdp .tdp-card-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tdp .tdp-name {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  color: #2d2d2d;
}

.tdp .tdp-meta {
  font-size: 15px;
  color: #666;
}

.tdp .tdp-submeta {
  font-size: 14px;
  color: #777;
  display: flex;
  gap: 6px;
}

.tdp .tdp-bio {
  font-size: 15px;
  color: #444;
  margin: 6px 0 0 0;
	padding-right:0px;
}

.tdp .tdp-card-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 12px;
  min-width: 180px;
}


.tdp .tdp-phone {
  font-size: 17px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}

.tdp .tdp-actions {
  display: flex;
  gap: 10px;
}

.tdp .tdp-btn {
  padding: 18px 30px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.tdp .tdp-btn[href^="mailto:"] {
  background: #9D7967;
  color: #fff;
  border: none;
}

.tdp .tdp-btn.tdp-view {
  background: #fff;
  color: #333;
  border: 1px solid #ccc;
}

.tdp .tdp-btn.tdp-view:hover {
  background: #9D796729 !important;
  color: #333 !important;
}
@media (max-width: 900px) {
 .tdp .tdp-card {
    display: flex;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
	  gap: 0;
  }

  .tdp .tdp-card-left {
    order: -1;
    width: 100%;
    display: flex;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    margin-bottom: 16px;
    gap: 0;
  }

  .tdp .tdp-avatar {
    max-width: 180px !important;
    width: 100%;
    height: auto !important;
    border-radius: 2px;
    object-fit: cover;
  }

  .tdp .tdp-card-main {
    width: 100%;
    text-align: left !important;
    align-items: flex-start !important;
    order: 1;
  }

  .tdp .tdp-card-right {
    width: 100%;
    margin-top: 16px;
    text-align: left !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    order: 2;
  }
  .tdp .tdp-actions {
    justify-content: flex-start !important;
  }
}
.tdp-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  padding: 12px 0;
  margin-bottom: 10px;
  position: relative;
  overflow: visible;
}

.tdp-topbar-left {
  display: flex;
  gap: 20px;
  position: relative;
  overflow: visible;
}

.tdp-topbar-right {
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
  overflow: visible;
}

.tdp-dropdown {
  position: relative;
}

.tdp-dropdown-toggle {
  background: none;
  border: none;
  font-size: 15px;
  color: #4a4440;
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
}

.tdp-dropdown-toggle:hover,
.tdp-dropdown.open .tdp-dropdown-toggle {
  background: #EFE9E7;
  color: #4a4440;
}

.tdp-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  min-width: 180px;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.tdp-dropdown-menu button {
  display: block;
  width: 100%;
  padding: 8px 12px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  border-radius: 6px;
}

.tdp-dropdown-menu button:hover {
  background: #EFE9E7;
  color: #333;
}

.tdp-dropdown.open .tdp-dropdown-menu {
  display: block;
}

.tdp-topbar-right .tdp-pill {
  background: #f3ece8;
  color: #4a3f3b;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 14px;
  border: none;
  cursor: pointer;
}

.tdp-topbar-right .tdp-pill:hover {
  background: #EFE9E7;
  color: #4a3f3b;
}
/* Section headings inside both modals */
.tdp-modal-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 20px 0 10px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0; /* Divider line */
}

.tdp-modal-content h3:first-of-type {
  border-top: none;
  padding-top: 0;
}
/* Modal overlay */
.tdp-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  overflow-y: auto;
  padding: 30px 15px;
}

.tdp-modal-content {
  background: #fff;
  max-width: 850px;
  margin: auto;
  border-radius: 10px;
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
}

.tdp-close {
  align-self: flex-end;
  font-size: 28px;
  cursor: pointer;
}

/* Modal body */
.tdp-modal-body.modal-flex {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

/* Left: Image */
.modal-left {
  flex: 0 0 250px;
}

.modal-left img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #ccc;
  object-fit: cover;
	object-position: top center;
}

/* Right: Info */
.modal-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: bold;
}

.modal-info p {
  margin: 5px 0;
}

.modal-info strong {
  width: 140px;
  display: inline-block;
}

.modal-bio h3 {
  margin: 0 0 5px 0;
  font-size: 18px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 3px;
}

.modal-bio p {
  margin-top: 5px;
}

/* Responsive */
@media(max-width: 650px) {
  .tdp-modal-body.modal-flex {
    flex-direction: column;
    align-items: center;
  }
  
  .modal-left {
    width: 100%;
  }

  .modal-right {
    width: 100%;
  }
/*  .tdp-topbar-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .tdp-topbar-right > * {
    flex: 0 0 45%;
    max-width: 45%;
    display: flex;
    justify-content: center;
    text-align: center;
  }
	 */
	.tdp-topbar-left {
    display: none !important;
}
}

.tdp-submeta .tdp-subitem:nth-of-type(1) {
    color: #485D61 !important;
    border-radius: 100px !important;
    border: 1px solid rgba(72, 93, 97, 0.04) !important;
    background: rgba(72, 93, 97, 0.12) !important;
}

.tdp-submeta .tdp-subitem:last-of-type {
    color: #82534A !important;
    border-radius: 100px !important;
    border: 1px solid rgba(185, 110, 96, 0.04) !important;
    background: rgba(185, 110, 96, 0.12) !important;
}
@media (max-width: 768px) {
	.tdp-modal-content {
    padding: 5px !important;
  }
.tdp-modal-content p {
  display: flex;
 justify-content: space-between;
  align-items: center;
  margin: 4px 0;        
  padding: 0;        
}
  #tdp-open-practice-modal {
    display: none !important;
  }
	.tdp-topbar {
    display: flex !important;
    justify-content: space-between !important;
    width: 100% !important;
  }

  .tdp-topbar-left,
  .tdp-topbar-right {
    flex: 1 !important;
  }
.tdp-topbar {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }

  .tdp-topbar-right {
    display: flex !important;
    justify-content: flex !important;
  }
}
.tdp-modal-content p span {
  margin: 0 2px;       
}
	.tdp-avatar img {
		width:200px !important;
		height:200px !important;
		padding-bottom: 30px !important;
	}
}
/* therapist detail model new */
.tdp-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  overflow-y: auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.tdp-modal-content {
  background: #FFFCFA;
  margin: auto;
  padding: 30px;
  width: 100%;
  max-width: 1500px !important;
  border-radius: 8px;
  position: relative;
}

.tdp-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
}

.modal-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.bordered-box {
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  background: #FFFCFA;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 20px;
}

.profile-card img {
  width: 190px;
  height: 190px;
  border-radius: 8px;
  object-fit: cover;
}

.profile-card h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
}

.profile-card p {
  margin: 4px 0;
  font-size: 15px;
  color: #555;
}
.section-block {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

.section-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.section-block h3 {
  margin-bottom: 30px;
  font-size: 17px;
  font-weight: 600;
  color: #222;
}
.practice-details-title {
  font-size: 20px;
  font-weight: 600;
  margin: 30px 0 15px;
}
#tdp-contact-form input,
#tdp-contact-form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

#tdp-contact-form button {
  width: 100%;
  padding: 10px;
  background: #0F0A0014;
  color: #333333;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#tdp-contact-form button:hover {
  background: #9D7967;
	color: #fff;
}

.bordered-box a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 6px;
}

.bordered-box a:hover {
  text-decoration: underline;
}

.bordered-box h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 18px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 900px) {
  .modal-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .tdp-modal {
    padding: 20px 15px;
  }

  .tdp-modal-content {
    padding: 10px;
    width: 100%;
  }

  .profile-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .profile-card img {
    width: 120px;
    height: 120px;
  }

  .profile-card h2 {
    font-size: 20px;
  }

  .profile-card p {
    font-size: 14px;
  }

  .bordered-box {
    padding: 12px 15px;
  }

  .bordered-box h3 {
    font-size: 15px;
  }

  #tdp-contact-form input,
  #tdp-contact-form textarea {
    font-size: 13px;
    padding: 6px;
  }

  #tdp-contact-form button {
    font-size: 13px;
    padding: 8px;
  }

  .tdp-close {
    top: 10px;
    right: 15px;
    font-size: 30px; 
  }
	 .tdp-modal-body.modal-grid {
    padding: 10px;
  }
}
.practice-details-title {
  font-size: 20px;
  font-weight: 500;
  margin: 20px 0 12px;
  color: #333;
	padding-bottom:15px;
}

.social-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
}

.social-header i {
  font-size: 16px;
  color: #0F0A00A3;
}

.social-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 400 !important;
  color: #333;
}

.social-item {
  border-bottom: none;
  padding: 0;
  margin-bottom: 10px;
}

.social-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  text-decoration: none;
  color: #0F0A00A3;
  transition: border-color 0.3s, background 0.3s;
}

.social-item a i {
  font-size: 20px;
}
i{
	  color: #0F0A00A3;
}
.social-item.linkedin a:hover { border-color: #0073b1; }
.social-item.facebook a:hover { border-color: #1877f2; }
.social-item.website a:hover { border-color: #333; }

.social-item.no-border a {
  border: none;
  padding: 0;
}
.section-block {
  padding-bottom: 20px;
}

.social-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
/* Modal body */
.tdp-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

/* Modal heading */
.tdp-modal-body h3 { 
  font-family: 'Noto Sans', sans-serif; 
}

/* Close button */
.tdp-modal-close {
  position: absolute;
  top: 8px;
  right: 20px;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #000 !important;
  border: 1px solid #000 !important;
}
.tdp-modal-close:hover {
  color: #fff !important;
  background-color: #9D7967!important;
  border-color: var(--light-gold) !important;
}

/* Grid layout inside modal */
.tdp-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
}

/* Field labels */
.tdp-field > label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
  color: var(--gold-light);
}

/* Inputs and selects */
.tdp-field select,
.tdp-field input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
}

/* Modal actions */
.tdp-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 24px;
  padding: 20px;
}

/* Fields */
.tdp-field {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.tdp-field:last-child {
  border-bottom: none;
}

/* Pill-group style */
.tdp-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.tdp-pill-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #000;
  cursor: pointer;
}

.tdp-pill-group input[type="checkbox"] {
  width: 25px;
  height: 25px;
  margin: 0;
  cursor: pointer;
}

.tdp-dropdown {
  margin-bottom: 25px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.tdp-dropdown-btn {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  border: none;
  border-bottom: 1px solid #0F0A0014;
  border-radius: 0;
  background-color: #fff;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0F0A00 !important;
  transition: background-color 0.3s, color 0.3s;
}

.tdp-dropdown-btn:hover {
   background-color: #82534A !important;
  color: white !important;
}

.tdp-dropdown-btn.active {
	 background-color:#fff !important;
  color:  #0F0A00 !important;
}

.tdp-dropdown-btn::after {
  content: "▾";
  font-size: 14px;
  transition: transform 0.3s;
  color: inherit;
}

.tdp-dropdown-btn.active::after {
  transform: rotate(180deg);
}

.tdp-dropdown-content {
  display: none;
  padding: 15px 0;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px 24px;
}

.tdp-dropdown-content.active {
  display: grid;
}

.tdp-dropdown-content label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
line-height:18px;
  color: #0F0A00;
  cursor: pointer;
}

.tdp-dropdown-content input[type="checkbox"] {
  width: 26px;
  height: 26px;
  margin: 0;
  cursor: pointer;
}

.tdp-dropdown-content input[type="text"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 6px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #0F0A00;
}
.tdp-practice-section {
  padding: 16px 0;
  border-bottom: 1px solid #0F0A0014;
}

.tdp-practice-section:last-child {
  border-bottom: none;
}


.tdp-areas-practice .tdp-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px 24px;
}

.tdp-areas-practice .tdp-practice-section {
  padding: 16px 0;
  border-bottom: 1px solid #0F0A0014;
}

.tdp-areas-practice .tdp-practice-section:last-child {
  border-bottom: none;
}

.tdp-areas-practice .tdp-practice-section h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--gold-light);
}

.tdp-areas-practice .tdp-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px 24px;
}

.hs h3 { 
  font-family: 'Noto Serif JP', serif !important;
font-weight: 400 
  font-size: 46px
  line-height: 45px 
  color: #0F0A00 !important;
}

/* Therapy Type – wider grid */
.tdp-therapy-types .tdp-dropdown-content {
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
	gap: 12px 24px;
}
.tdp-therapy-types .tdp-practice-section {
  padding: 16px 0;
  border-bottom: 1px solid #0F0A0014;
}
/* Group label (heading checkbox row) */
.tdp-therapy-types .tdp-practice-section > label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.tdp-therapy-types .tdp-checkbox-grid {
  display: grid;
  gap: 12px 24px;
  margin-top: 12px;
}

.tdp-dropdown-content .tdp-fee-range {
  grid-column: 1 / -1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Ensure fields stretch fully */
.tdp-dropdown-content .tdp-fee-field {
  width: 100%;
  min-width: 0;
}

/* Full-width inputs */
.tdp-dropdown-content .tdp-fee-field input {
  width: 100%;
  box-sizing: border-box;
}
/* Pagination container */
.tdp-pagination {
    margin-top: 20px;
    text-align: center;
}

/* Current page number */
.tdp-pagination .current-page {
    color: #9D7967; /* Custom color */
    font-weight: bold;
}

/* Other page links */
.tdp-pagination a {
    color: #000; /* Default link color */
    margin: 0 5px;
    text-decoration: none;
}

/* Optional: hover effect for links */
.tdp-pagination a:hover {
    color: #9D7967;
}
/* Mobile responsive: 1 column */
@media (max-width: 767px) {
    .tdp-list-columns {
        grid-template-columns: 1fr;
        gap: 4px 0;
    }
}
/* Pagination container */
.tdp-pagination {
  display: flex;
  justify-content: center; /* center buttons */
  gap: 10px;
  margin: 20px 0;
  flex-wrap: wrap;
}

/* Pagination buttons */
.tdp-page-btn {
  padding: 4px 10px; 
border: 1px solid #FFFCFA; 
  color: #9D7967;             /* new color text */
  font-weight: 400;
  border-radius: 50%;        /* pill shape */
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

/* Hover effect */
.tdp-page-btn:hover {
  background-color: #9D7967;  /* new color background */
  color: #fff;                /* white text */
}

/* Active page */
.tdp-page-btn.active {
  background-color: #9D7967;
  color: #fff;
  pointer-events: none;
}
[type=button]:focus,
[type=button]:hover,
[type=submit]:focus,
[type=submit]:hover,
button:focus,
button:hover {
    background-color: #9D7967 !important; /* updated color */
    color: #fff !important;
    text-decoration: none !important;
}

/* =========================
   TDP HERO
========================= */

.tdp-hero {
  width: 100%;
  padding: 90px 20px 70px;
  border-bottom: 1px solid #e5e5e5;
}

.tdp-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.tdp-hero-title {
  font-family: 'Noto Serif', serif;
  font-size: 80px;
  font-weight: 100;
  letter-spacing: -2px;
  color: #0F0A0080;
  margin: 0 0 24px;
}

.tdp-hero-title span {
  color: #4A4A4A;
}

/* Search Bar */
.tdp-hero-search {
  display: flex;
  align-items: center;
  gap: 10px;

  max-width: 600px;
  margin: 0 auto;

  padding: 12px;
  background: #fff;
  border: 1px solid lightgrey;
  border-radius: 4px;
}

.tdp-hero-search input {
  flex: 1;
  padding: 10px;
  font-size: 14px;

  border: none !important;
  outline: none;
  background: transparent;
}

.tdp-hero-search .tdp-search-btn {
  background: #9D796729;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
}

.tdp-hero-search .tdp-search-btn svg {
  fill: black;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {
  .tdp-hero-title {
    font-size: 49px;
  }

/*   .tdp-hero-search {
    flex-direction: column;
  }

  .tdp-hero-search .tdp-search-btn {
    width: 100%;
    height: 48px;
  }
} */