/* ============================== 
   GLOBAL VARIABLES 
================================ */
:root {
  --container-width: 1200px;
  --primary-color: #0e54ae;
  --secondary-color: #b15092;
  --black: #000;
  --text-muted: #666;
  --header-bg: #ffffff;
  --brand-blue: #0e54ae;
  --brand-pink: #b15092;
  --light-pink-bg: #fff4fa;
  --border-radius-sm: 12px;
  --border-radius-md: 16px;
  --border-radius-lg: 20px;
}

/* ============================== 
   RESET & BASE STYLES 
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
}

/* ============================== 
   HEADER 
================================ */
.site-header {
  width: 100%;
  background-color: var(--header-bg);
  border-bottom: 1px solid #ddd;
}

.header-container {
  max-width: var(--container-width);
  margin-inline: auto;
}

/* Top Bar */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
}

/* Logo */
.logo img {
  width: 255px;
  height: 35px;
  object-fit: contain;
  display: block;
}

/* Header Info */
.header-info {
  display: flex;
  gap: 40px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-icon {
  width: 41px;
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.info-title {
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 18px;
}

.info-sub {
  font-size: 13px;
  color: var(--black);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-box {
  position: relative;
}

.search-box input[type="search"],
.search-box input[type="text"] {
  padding: 8px 44px 8px 14px;
  border-radius: 100px;
  border: 1px solid #b7b7b7;
  outline: none;
  height: 48px;
  width: 198px;
  font-size: 14px;
}

.search-box input[type="submit"] {
  display: none;
}

.search-box::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 22px;
  height: 22px;
  background: url("../img/search.svg") no-repeat center;
  background-size: contain;
  transform: translateY(-50%);
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.search-box:focus-within::after {
  opacity: 0;
}

.cta-btn {
  position: relative;
  overflow: hidden;
  background: var(--secondary-color);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  width: 228px;
  height: 48px;
  font-size: 16px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transition: left 0.4s ease;
  z-index: -1;
}

.cta-btn:hover::before {
  left: 0;
}

.cta-btn:hover {
  color: #fff;
}

/* ============================== 
   NAVIGATION BAR 
================================ */
.nav-wrapper {
  width: 100%;
  border-top: 1px solid var(--primary-color);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
}

.nav-bar {
  max-width: var(--container-width);
  margin-inline: auto;
  padding-block: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Menu */
.menu {
  list-style: none;
  display: flex;
  gap: 18px;
}

.menu a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  position: relative;
  padding: 0 12px;
}

.menu li.active a {
  color: var(--primary-color);
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 2px;
  background: var(--secondary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.menu a:hover::after,
.menu .current-menu-item a::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: inherit;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 16px;
  font-weight: bold;
  cursor: pointer;
}

.social-icons .fa-brands {
  font-size: 20px;
  color: #000;
}

.social-icons .fa-brands:hover {
  font-size: 20px;
  color: var(--secondary-color);
}

/* ============================== 
   HERO SECTION 
================================ */
.hero-section {
  background: #fdfdfd url("../img/banner.webp") no-repeat center center;
  background-size: cover;
  height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.post-type-archive-clinic .hero-section,
.single-doctors .hero-section {
  height: 500px;
}

.post-type-archive-service .hero-section,
.single-clinic .hero-section {
  height: 600px;
}

.post-type-archive-doctors .hero-section {
  height: 660px;
}

.hero-container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
}

/* Hero Left */
.hero-left {
  flex: 1;
  min-width: 60%;
}

.post-type-archive-doctors .hero-left {
  flex: 0.65;
  min-width: 42%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.single-clinic .hero-left,
.post-type-archive-clinic .hero-left,
.page-template-about-us .hero-left {
  flex: 1;
  min-width: 50%;
}

.hero-left p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  margin: 20px 0;
  line-height: 24px;
}

.single-clinic .location-info,
.post-type-archive-clinic .hero-left p {
  margin-right: 60px;
}

.hero-left h1 {
  color: var(--primary-color);
  font-size: 57.632px;
  font-weight: 800;
}

.hero-left h3 {
  color: var(--primary-color);
  font-size: 36px;
  font-weight: 800;
  margin-top: 10px;
}

.hero-left .feature-icon {
  width: 34px;
  height: 34px;
  background-color: var(--secondary-color);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.hero-features {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-item span {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 500;
}

.hero-left .cta-btn {
  height: 58px;
  border-radius: 124px;
  width: 300px;
  font-size: 19.829px;
  margin-top: 20px;
}

.single-clinic .hero-left .cta-btn {
  width: auto;
  display: inline-flex;
  font-size: 16px;
  padding: 10px 25px;
  height: 50px;
  margin-right: 10px;
}

.single-doctors .hero-left .cta-btn {
  width: 385px;
}

/* Hero Right Image */
.hero-right-image {
  position: relative;
  flex: 1;
  min-width: 320px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

.home .hero-right-image img {
  width: 758px;
  max-width: 799px;
  border-radius: 12px;
  margin-left: -210px;
}

.post-type-archive-doctors .hero-right-image img {
  width: 80vw;
  object-fit: contain;
  margin-left: 60px;
}

.post-type-archive-service .hero-right-image img,
.post-type-archive-clinic .hero-right-image img,
.single-doctors .hero-right-image img {
  margin-bottom: -65px;
}

.post-type-archive-service .hero-right-image img,
.post-type-archive-clinic .hero-right-image img {
  width: 810px;
  max-width: 800px;
  border-radius: 0;
}

.single-clinic .hero-right-image img {
  width: 800px;
  max-width: 800px;
  border-radius: 0;
}

.hero-right-image img {
  width: 520px;
  border-radius: 12px;
}

/* Badge Overlay */
.home .hero-right-image::after {
  content: "";
  position: absolute;
  bottom: 30%;
  right: calc(50% - 260px + 20px);
  width: 100px;
  height: 100px;
  background: url("../img/doctors-badge.svg") no-repeat center center;
  background-size: contain;
  pointer-events: none;
}

/* Hero Bottom Box - Form & Testimonial */
.hero-bottom-box {
  display: flex;
  max-width: var(--container-width);
  margin: 40px auto 0;
  position: relative;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  justify-content: space-between;
}

.appointment-testimonial-section {
  margin-top: -200px;
}

/* Hero Testimonial */
.hero-testimonial {
  width: 575px;
  background: var(--primary-color);
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  margin-right: -200px;
  height: 350px;
}

.quote {
  margin-bottom: 20px;
}

.doctor-sign {
  display: block;
  margin: 0 auto;
  width: 135px;
  height: 103px;
}

.hero-testimonial p {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: #fff;
  margin: 0 0 15px 0;
}

.signature {
  width: 100px;
  height: auto;
}

/* Hero Form */
.hero-form {
  width: 767px;
  background: #fff;
  padding: 30px 50px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.hero-form h2 {
  width: 100%;
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  text-align: right;
}

.form-inner {
  display: flex;
  gap: 20px;
  flex-direction: row;
  flex-wrap: wrap;
}

.form-image {
  min-width: 400px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.form-image img {
  width: 237px;
  height: 267px;
  border-radius: 12px;
  display: block;
  margin-right: 40px;
}

.appointment-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-fields {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-input {
  width: 100%;
  padding: 13px 15px;
  border-radius: 100px;
  border: 1px solid #f9f9f9;
  background: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.31);
  -webkit-appearance: none;
  -moz-appearance: none;
}

.checkbox {
  font-size: 12px;
  color: var(--text-muted);
  margin-block: 10px;
}

.checkbox .wpcf7-list-item-label {
  margin-left: 10px;
}

.form-input::placeholder {
  color: #000;
  opacity: 1;
}

.form-input[type="date"]::placeholder {
  color: #999;
  opacity: 1;
}

.form-input[type="date"]::-webkit-inner-spin-button {
  display: none;
}

.form-input select option:first-child {
  color: #999;
}

select.form-input {
  color: #000;
  -webkit-text-fill-color: #000;
}

.hero-form .wpcf7-submit.cta-btn {
  background: linear-gradient(to right, var(--primary-color) 50%, var(--secondary-color) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  color: #fff;
  border: none;
  transition: background-position 0.35s ease;
}

.hero-form .wpcf7-submit.cta-btn:hover {
  background-position: left bottom;
}

/* Location Info */
.location-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  align-items: center;
  margin: 18px 0 0;
}

.location-info__item {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  line-height: 1.4;
  color: #636363;
  display: inline-flex;
  align-items: center;
}

.location-info__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.location-info__item:nth-child(1)::before {
  background-image: url("https://dentalcare.devbuildpro.com/wp-content/uploads/2026/01/Group-3.svg");
}

.location-info__item:nth-child(2)::before {
  background-image: url("https://dentalcare.devbuildpro.com/wp-content/uploads/2026/01/Vector-8.svg");
}

.location-info__item:nth-child(3)::before {
  background-image: url("https://dentalcare.devbuildpro.com/wp-content/uploads/2026/01/Layer_x0020_1.svg");
}

.location-info__item a {
  color: inherit;
  text-decoration: none;
}

.location-info__item a:hover {
  text-decoration: underline;
}

/* ============================== 
   FEATURE SECTION (About)
================================ */
.feature-section {
  padding: 100px 0;
}

.feature-section .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-wrap {
  display: flex;
  align-items: flex-start;
  gap: 35px;
}

.feature-images {
  display: flex;
  gap: 14px;
}

.image-large img {
  object-fit: cover;
  border-radius: 20px;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-small img {
  object-fit: cover;
  border-radius: 16px;
}

.feature-content {
  max-width: 570px;
}

.feature-section--single .feature-content {
  max-width: 100%;
}

.feature-content p {
  font-size: 16px;
  line-height: 25px;
  color: #000;
  margin-bottom: 20px;
}

.feature-content .highlight-text {
  font-weight: 500;
}

.feature-content .item-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 40px 0 0;
}

.feature-content .item-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  padding-left: 0 !important;
}

.feature-content .item-item .list-cnt {
  flex: 1;
}

.feature-content .item-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 34px;
  top: 70px;
  bottom: -40px;
  width: 3px;
  background: #0E54AE;
  z-index: 1;
}

.feature-content .item-icon {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  object-fit: cover;
  filter: drop-shadow(0 4px 12px rgba(14, 84, 174, 0.2));
  position: relative;
  z-index: 2;
  border: 2px solid var(--primary-color);
  padding: 14px;
  border-radius: 50px;
}

.feature-content .item-item h4 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.feature-content .item-item p {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  margin: 0;
}

.feature-content .item-item--bottom {
  margin-top: 26px;
  max-width: 100%;
}

.feature-content .item-item--bottom p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.95;
  color: #000;
}

/* ============================== 
   STATS SECTION 
================================ */
.stats-section {
  padding-bottom: 80px;
}

.post-type-archive-service .stats-section {
  padding-top: 65px;
  padding-bottom: 0;
}

.stats-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.stats-wrap {
  display: flex;
  gap: 50px;
}

.stat-card {
  flex: 1;
  background: var(--light-pink-bg);
  border-radius: 20px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 367px;
  height: 128px;
}

.post-type-archive-service .stat-card {
  background: #fff;
}

.stat-card img {
  flex-shrink: 0;
}

.stat-card p {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

/* ============================== 
   WHY CHOOSE US SECTION 
================================ */
.why-choose-section {
  background: var(--primary-color);
  text-align: center;
}

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  width: 100%;
}

.why-choose-section .section-title {
  color: #fff;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.why-choose-item {
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-radius: 30px;
}

.why-icon {
  margin-bottom: 30px;
}

.why-icon img {
  width: 80px;
  height: 80px;
}

.why-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 22px;
}

.why-text {
  color: #fff;
  line-height: 1.6;
  margin: 0;
}

/* ============================== 
   STATS COUNTER SECTION 
================================ */
.stats-counter-section {
  padding: 80px 0px;
  background: #fafafa;
}

.stats-counter-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.stats-header {
  text-align: center;
  margin-bottom: 60px;
}

.stats-counter-section .section-subtitle {
  line-height: 25px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.stat-item {
  text-align: center;
  background: #fff;
  padding: 30px 20px;
  border-radius: 19.64px;
}

.stat-icon img {
  width: 89px;
  height: 89px;
  margin-bottom: 20px;
}

.stat-counter,
.suffix {
  font-size: 64px;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 22px;
  color: #000;
  font-weight: 700;
  margin: 0;
}

.stats-bottom-row {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 60px;
}

.testimonial-left {
  flex: 1;
}

.right-side-content {
  flex: 1;
  padding: 40px;
}

.right-side-content p {
  font-size: 16px;
  color: #000;
  line-height: 24px;
}

/* ============================== 
   SERVICES SECTION 
================================ */
.services-section {
  padding: 80px 20px 140px;
  background: #fafafa;
  text-align: center;
}

.services-section .container{
  width:1200px;
  margin:0 auto;
}

.section-title {
  font-size: 40px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 10px;
}

.single-clinic .services-section .section-title {
  margin-bottom: 30px;
  width:60%;
  margin-inline:auto;
}

/*.single-clinic .service-card .flip-back{*/
/*    background: var(--primary-color);*/
/*}*/

.services-section .section-subtitle {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  color: #000;
  margin-bottom: 60px;
}

.services-slider-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}

.services-slider {
  overflow-x: hidden;
  height: 390px;
}

.services-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.service-card {
  width: 290px;
  height: 349px !important;
  flex-shrink: 0;
}

.service-card.active .flip-front {
  background: #fff4fa;
}

.service-card .flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.service-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.service-card .flip-front,
.service-card .flip-back {
  position: absolute;
  inset: 0;
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  backface-visibility: hidden;
}

.service-card .flip-front img {
  width: 120px;
  height: 180px;
  margin-bottom: 30px;
}

.service-card .flip-back img {
  width: 60px;
  height: 90px;
}

.service-card .flip-front .service-icon{
  width: 120px;
  height: 180px;
  margin-bottom: 30px;
  display: inline-block;
}

.service-card .flip-back .service-icon{
  width: 60px;
  height: 90px;
  display: inline-block;
}

.service-card .service-icon svg{
  width: 100%;
  height: 100%;
  display: block;
}


.service-card .flip-front h3 {
  color: #000;
  font-size: 21px;
  margin-bottom: 12px;
  font-weight: 700;
}

.service-card .flip-front p {
  font-size: 14px;
  color: #444;
}

.service-card .flip-front.center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service-card .learn-more {
  margin-top: 20px;
  display: inline-block;
  color: #c05a9b;
  text-decoration: none;
  font-weight: 500;
}

.service-card .flip-back {
  transform: rotateY(180deg);
  background: #fff6fc;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  gap: 15px;
  justify-content: center;
}

.service-card .flip-back h3 {
  color: var(--primary-color);
  font-size: 21.604px;
  font-style: normal;
  font-weight: 700;
  text-align: left;
}

.service-card .flip-back p {
  color: #0d0d0d;
  font-size: 13.748px;
  font-style: normal;
  font-weight: 400;
  line-height: 24.55px;
  text-align: left;
}

.service-card .learn-more-btn {
  width: 149.932px;
  height: 35.278px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 19px;
  border: 1px solid #c05a9b;
  border-radius: 999px;
  color: #c05a9b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  background-color: transparent;
  transition: all 0.3s ease;
}

.service-card .learn-more-btn .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 18px;
}

.service-card .learn-more-btn:hover {
  background-color: #fff4fa;
}

.service-card .learn-more-btn:hover .arrow {
  transform: translateX(6px);
}

.services-section .slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 18px;
  position: absolute;
  bottom: -60px;
}

.services-section .slider-btn.prev {
  left: 45%;
  background-color: var(--primary-color);
  color: #ffffff;
}

.services-section .slider-btn.prev:hover,
.services-section .slider-btn.next:hover {
  background-color: var(--secondary-color);
}

.services-section .slider-btn.next {
  right: 45%;
  background-color: var(--primary-color);
  color: #ffffff;
}

/* ============================== 
   INSURANCE SECTION 
================================ */
.insurance-content-section {
  background-color: var(--primary-color);
  padding: 100px 20px 140px;
  height: 512px;
}

.insurance-header {
  max-width: 1200px;
  margin: 0 auto 60px;
  text-align: center;
  color: #ffffff;
}

.insurance-header h2 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 10px;
}

.insurance-header p {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}

.insurance-card {
  max-width: 1200px;
  margin: -250px auto 0;
  background: #fff7fb;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.insurance-left {
  background: #fff7fb;
}

.insurance-left,
.insurance-right {
  padding: 40px;
  border-radius: 20px;
}

.insurance-right {
  background: #fff;
}

.insurance-left h3,
.insurance-right h3 {
  margin-bottom: 12px;
  color: var(--primary-color);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
}

.insurance-right h3 {
  color: #000;
}

.insurance-right h3:nth-of-type(2) {
  margin-top: 50px;
}

.insurance-left p,
.insurance-right p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

.insurance-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
  margin-top: 30px;
}

.logo-item {
  text-align: center;
}

.logo-item img {
  max-width: 110px;
  height: auto;
}

.logo-item span {
  display: block;
  font-size: 14px;
  color: #000;
}

.insurance-right .cta-btn {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  width: 160px;
  font-weight: 700;
  font-size: 16px;
}

/* ============================== 
   TEAM SECTION 
================================ */
.team-section {
  padding: 300px 0 0;
  background: url("../img/team-section.webp") no-repeat center;
  margin-top: -239px;
}

.team-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 80px;
}

.section-tag {
  color: #a4558f;
  font-size: 24px;
  font-weight: 500;
}

.team-content {
  margin-top: -200px;
}

.team-content h2 {
  margin: 10px 0 30px;
}

.team-cnt {
  display: flex;
  align-items: flex-start;
  gap: 35px;
}

.team-quote {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 490px;
  margin-left: auto;
  flex-direction: column;
}

.quote-icon {
  font-size: 60px;
  color: #a4558f;
  line-height: 1;
}

.team-quote p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

.signature img {
  margin-top: 20px;
  max-width: 140px;
}

.team-image img {
  max-width: 100%;
  border-radius: 20px;
}

/* Team Cards Slider */
.teams-slider-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -300px;
}

.single-doctors .teams-slider-wrapper {
  margin: 70px auto;
  width: 1200px;
  display: block;
}

.teams-slider {
  overflow-x: hidden;
  width: 1224px;
  height: 450px;
  align-items: center;
}

.teams-track {
  gap: 20px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.team-card {
  width: 290px;
  height: 394px !important;
  perspective: 1000px;
  flex-shrink: 0;
}

.team-card .flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.team-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.team-card .flip-front,
.team-card .flip-back {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  backface-visibility: hidden;
}

.team-card .flip-front {
  position: relative;
  background-size: cover;
  background-position: 60% 10%;
  background-repeat: no-repeat;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 24px;
  height: 100%;
  justify-content: flex-end;
  flex-direction: column;
  gap: 8px;
}

.team-card .flip-front::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 144px;
  background: linear-gradient(180deg, rgba(14, 84, 174, 0) 0%, var(--primary-color) 100%);
  z-index: 1;
}

.team-card .flip-front h3 {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.team-card .flip-front .designation {
  color: #fff;
  z-index: 2;
}

.team-card .flip-back {
  transform: rotateY(180deg);
  background: var(--primary-color);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  z-index: 22;
}

.team-card .flip-back h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.team-card .flip-back span {
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  line-height: 26.514px;
}

.team-card .flip-back p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 24.55px;
}

.doctor-info-meta .social-icons {
  gap: 10px;
  display: flex;
}

.doctor-info-meta .social-icons a {
  border: 1px solid #fff;
  border-radius: 100%;
  padding: 5px;
}

.doctor-info-meta .fa-brands {
  color: #fff;
  font-size: 15px;
}

.doctor-info-meta {
  gap: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
}

.doctor-info {
  width: 100%;
  padding: 20px;
  border-bottom: 1px solid #fff;
}

.doctor-info-meta {
  padding: 0px 20px 25px;
}

.doctor-info-meta .social-icons a:hover {
  background: #fff;
  color: var(--primary-color);
}

.doctor-info-meta .social-icons a:hover i,
.doctor-info-meta .social-icons a:hover .fa-brands {
  color: var(--primary-color);
  font-size: 15px;
}

.teams-slider-wrapper .slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 18px;
  position: absolute;
  bottom: -60px;
}

.teams-slider-wrapper .slider-btn.prev:hover,
.teams-slider-wrapper .slider-btn.next:hover {
  background-color: var(--primary-color);
}

.teams-slider-wrapper .slider-btn.prev {
  right: 320px;
  top: -23%;
  background-color: var(--secondary-color);
  color: #ffffff;
}

.teams-slider-wrapper .slider-btn.next {
  right: 250px;
  top: -23%;
  background-color: var(--secondary-color);
  color: #ffffff;
}

.single-doctors .teams-slider-wrapper .slider-btn.prev,
.single-doctors .teams-slider-wrapper .slider-btn.next {
  top: 0;
}

.single-doctors .teams-slider-wrapper .slider-btn.prev {
  right: 6.5%;
}

.single-doctors .teams-slider-wrapper .slider-btn.next {
  right: 0;
}

.single-doctors .teams-slider-wrapper .cta-btn {
  margin: auto;
}

/* Team Section Grid */
.team-section-grid {
  background: #fafafa;
  padding: 100px 20px;
}

.team-section-grid .section-title {
  margin-bottom: 50px;
}

.team-section-grid .section-title,
.team-section-grid .section-tag {
  text-align: center;
}

.team-section-grid .team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
}

.team-section-grid .container {
  max-width: 1200px;
  margin: auto;
}

.team-section-grid .team-card {
  width: 276px;
}

.founder-section .section-title,
.specialization-group .section-title {
  text-align: center;
}

.doctors-by-specialization .team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
  margin-bottom: 80px;
}

.founder-section .team-grid {
  display: flex;
  justify-content: center;
}

/* ============================== 
   TESTIMONIALS SECTION 
================================ */
.testimonials-section {
  padding: 80px 0;
  background-image: url(/wp-content/uploads/2026/01/image-14.png);
  background-position: center;
  background-size: cover;
  text-align: center;
  font-family: Inter, sans-serif;
}

.testimonials-section .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.testimonials-section .section-title {
  margin-bottom: 0px;
}

.testimonials-section .section-subtitle {
  margin-bottom: 30px;
  font-size: 17px;
}

.testimonial-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 50px;
}

.tab-btn {
  padding: 10px 35px;
  border-radius: 999px;
  border: 1px solid #c05a9b;
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #000;
}

.tab-btn.active {
  background: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
}

.testimonials-grid {
  display: none;
  overflow: hidden;
  width: 100%;
}

.testimonials-grid.active {
  display: flex;
}

.testimonials-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 33.333%;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: left;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-info img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 20.41px;
}

.user-info span {
  font-size: 16px;
  font-weight: 500;
  line-height: 20.41px;
  color: #9d9d9d;
}

.google-icon {
  width: 22px;
}

.stars {
  color: #f4b400;
  font-size: 18px;
  margin: 10px 0;
}

.review-text {
  color: #000;
  font-size: 14.24px;
  font-weight: 400;
  line-height: 22.251px;
}

.testimonial-dots {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: var(--secondary-color);
}

/* ============================== 
   COMPARISON SECTION (Before/After)
================================ */
.comparison-section {
  display: flex;
  justify-content: center;
  padding: 80px 20px 0;
  background: transparent;
}

.comparison-card {
  display: flex;
  gap: 40px;
  background: var(--primary-color);
  border-radius: 20px;
  max-width: 1200px;
  width: 100%;
  padding: 40px;
}

.comparison-content {
  flex: 1;
  color: #ffffff;
}

.comparison-content h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 20px;
}

.comparison-content p {
  font-size: 20px;
  line-height: 1.6;
  max-width: 420px;
}

.comparison-dots {
  margin-top: 20px;
  display: flex;
  gap: 8px;
}

.comparison-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.2s ease;
}

.comparison-dots .dot.active {
  background: #ffffff;
}

.comparison-wrapper {
  flex: 2;
}

.img-compare {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
}

.img-after,
.img-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.img-after img,
.img-before img {
  height: 100%;
  object-fit: cover;
}

.img-before {
  width: 100%;
  overflow: hidden;
  z-index: 2;
}

.compare-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
}

.divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #ffffff;
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
}

.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  background-image: url("/wp-content/themes/Dental%20Care%20Theme/assets/img/arrow-before-after.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translate(-50%, -50%);
  z-index: 6;
}

.comparison-slider .slick-dots,
.comparison-slider .slick-arrow {
  display: none !important;
}

.comparison-slider {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.comparison-card.slick-slide {
  flex-shrink: 0;
  display: flex !important;
}

.comparison-section .slick-list {
  overflow: hidden;
}

.comparison-section .slick-track {
  display: flex !important;
}

/* ============================== 
   APPOINTMENT/CONTACT SECTION 
================================ */
.appointment-section {
  padding: 150px 20px;
  background-image: url("/wp-content/uploads/2026/01/smiling-doctor-assistant-with-crossed-hands-looking-camera-dental-clinic-1-1-1.webp");
  background-position: center;
  background-size: cover;
}

.appointment-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.appointment-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.appointment-image {
  flex: 1;
}

.appointment-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.appointment-form-wrapper {
  flex: 1;
  max-width: 500px;
}

.small-title {
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: 500;
}

.appointment-section .section-subtitle {
  color: #000;
  margin-bottom: 24px;
}

.appointment-form-wrapper .appointment-form input[type="checkbox"] {
  height: auto;
}

.appointment-form-wrapper .appointment-form input {
  width: 100%;
  max-width: 100%;
  height: 48px;
  padding: 0 16px 0 56px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background-color: #ffffff;
  color: #000;
  -webkit-text-fill-color: #000;
  box-sizing: border-box;
  display: block;
  min-width: 0;
}

.appointment-form-wrapper .appointment-form .wpcf7-list-item input {
  padding-left: 0;
}

.appointment-form-wrapper .appointment-form .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
}

.appointment-form-wrapper .appointment-form .wpcf7-acceptance input[type="checkbox"] {
  flex: 0 0 15px;
  margin-top: 2px;
}

.appointment-form-wrapper .appointment-form input[type="text"] {
  background: #fff url("../img/user.svg") no-repeat 14px center / 38px 20px;
}

.appointment-form-wrapper .appointment-form input[type="email"] {
  background: #fff url("../img/mail.svg") no-repeat 14px center / 38px 20px;
}

.appointment-form-wrapper .appointment-form input[type="date"] {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 48px;
  padding-left: 56px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff url("../img/form-calender.svg") no-repeat 14px center / 38px 20px;
  color: #000;
  box-sizing: border-box;
  display: block;
}

.appointment-form-wrapper .appointment-form input[type="date"]::-webkit-inner-spin-button {
  display: none;
}

@supports (-webkit-touch-callout: none) {
  .appointment-form-wrapper .appointment-form input[type="date"] {
    min-width: 0;
  }
}

.appointment-form-wrapper .appointment-form .wpcf7-form-control-wrap {
  width: 100%;
  min-width: 0;
}

.appointment-form-wrapper .appointment-form input:focus {
  border-color: #000;
  outline: none;
}

.appointment-form-wrapper .checkbox {
  color: #333;
}

.appointment-form-wrapper .appointment-form .wpcf7-submit {
  background: linear-gradient(to right, var(--primary-color) 50%, var(--secondary-color) 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  color: #fff;
  -webkit-text-fill-color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  margin-right: 12px;
  width: 200px;
  height: 43px;
  font-size: 13.368px;
  font-weight: 700;
  padding: 0;
  transition: background-position 0.35s ease;
}

.appointment-form-wrapper .appointment-form .wpcf7-submit:hover {
  background-position: left bottom;
}

.appointment-form-wrapper .appointment-form .wpcf7-spinner {
  display: none;
}

.form-button {
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-text {
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 25px;
}

/* Booking Form Alternative */
.appointment-section .booking-form {
  max-width: 980px;
  margin: 0 auto;
  background: #0e54ae;
  border-radius: 18px;
  overflow: hidden;
  padding: 46px 46px 0;
  color: #fff;
}

.appointment-section .booking-head {
  text-align: center;
  margin-bottom: 28px;
}

.appointment-section .booking-brand {
  margin: 0 0 6px;
  opacity: .9;
  font-size: 14px;
}

.appointment-section .booking-title {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
}

.appointment-section .booking-subtitle {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  opacity: .9;
}

.appointment-section .booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 30px;
}

.appointment-section .field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .92);
}

.appointment-section .wpcf7-form-control {
  width: 100%;
  color: #222;
  border-radius: 6px;
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
  border: none;
}

.appointment-section .wpcf7-list-item-label {
  color: #fff;
}

.appointment-section #wpcf7-f140-o1 .wpcf7-list-item-label {
  color: #000;
}

.appointment-section textarea.wpcf7-form-control {
  min-height: 210px;
  resize: vertical;
}

.appointment-section .field-full {
  margin-top: 18px;
}

.appointment-section .booking-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-bottom: 26px;
}

.appointment-section .booking-consent {
  font-size: 11px;
  opacity: .9;
}

.appointment-section .booking-consent input[type="checkbox"] {
  transform: translateY(1px);
  margin-right: 8px;
}

.appointment-section .booking-submit .wpcf7-submit {
  background: #b15092;
  border: 0;
  padding: 12px 26px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.appointment-section .wpcf7-not-valid-tip {
  color: #ffe7f6;
  font-size: 12px;
  margin-top: 6px;
}

.appointment-section .wpcf7-response-output {
  margin: 16px 0 0;
  border-color: rgba(255, 255, 255, .6);
  color: #fff;
}

.wpcf7-spinner {
  display: none;
}

/* ============================== 
   DOCTOR INTRO SECTION 
================================ */
.doctor-intro {
  padding: 80px 20px;
  background: #fff;
}

.doctor-intro .container {
  max-width: 1200px;
  margin: 0 auto;
}

.doctor-intro__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  align-items: start;
}

.doctor-intro__content {
  max-width: 640px;
}

.doctor-intro__content p,
.doctor-intro__content--bottom p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.95;
  color: #000;
}

.doctor-intro__content--bottom {
  margin-top: 26px;
  max-width: 100%;
}

.doctor-intro__card {
  background: #f3f5f7;
  border-radius: 18px;
  padding: 70px;
}

.intro-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}

.intro-ico img {
  width: 46px;
  height: 46px;
  display: block;
  object-fit: contain;
}

.intro-text,
a.intro-link {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
}

.intro-link:hover {
  color: var(--secondary-color);
}

.intro-social {
  margin-top: 28px;
}

.intro-social__title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

.intro-social__icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.intro-social__icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(14, 84, 174, .25);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.intro-social__icons a:hover {
  transform: translateY(-2px);
  background: rgba(14, 84, 174, .06);
}

.single-doctors .social-media-section {
  display: none;
}

.intro-social__icons a i {
  font-size: 24px;
}

/* ============================== 
   BLOG SECTION 
================================ */
.blog-section {
  padding: 340px 20px 80px;
  background-image: url("../img/blog-bg.webp");
  text-align: center;
  background-size: cover;
  background-position: center;
  margin-top: -250px;
}

.blog-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 20px;
}

.blog-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.blog-card {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  max-width: 540px;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.blog-date {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.932px;
}

.blog-title {
  color: var(--primary-color);
  font-size: 22.932px;
  font-weight: 700;
  margin: 8px 0;
}

.blog-content p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

.learn-more {
  display: inline-flex;
  width: 152.68px;
  height: 35.925px;
  justify-content: center;
  align-items: center;
  border-radius: 128.303px;
  border: 1.283px solid var(--primary-color);
  color: var(--primary-color);
  font-size: 15.148px;
  font-weight: 600;
  font-style: normal;
  text-decoration: none;
  background: transparent;
  gap: 15px;
}

.learn-more .arrow {
  font-size: 20px;
  line-height: 1;
}

.blog-dots {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.blog-dots li {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(160, 79, 148, 0.4);
}

.blog-dots li::marker {
  display: none;
}

.blog-dots li.slick-active {
  background: #a04f94;
}

/* ============================== 
   MAP/CONTACT SECTION 
================================ */
.contact-section {
  padding: 50px 20px;
  background: #fafafa;
  display: flex;
  justify-content: center;
}

.contact-section .container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  align-items: center;
}

.map-wrapper {
  width: 797px;
  height: 697px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: none;
}

.contact-card {
  background: var(--primary-color);
  color: #fff;
  border-radius: 16px;
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 505px;
  height: 470px;
  margin-left: -100px;
}

.contact-card h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}

.contact-card h2 {
  font-size: 28px;
  margin-bottom: 24px;
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card ul li {
  line-height: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-card ul li a {
  margin-right: 10px;
  color: #ffffff;
  text-decoration: none;
}

/* ============================== 
   SOCIAL MEDIA SECTION 
================================ */
.social-media-section {
  padding: 40px 20px 60px;
  background: #fff;
  display: flex;
  justify-content: center;
}

.social-media-section .container {
  width: 1200px;
}

.social-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.follow-btn {
  border: 1px solid #2453a6;
  border-radius: 25px;
  background: #fff;
  color: #000;
  cursor: pointer;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  transition: 0.3s;
  width: 145.893px;
  height: 35.345px;
}

.follow-btn:hover {
  background: #2453a6;
  color: #fff;
}

.social-gallery {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}

.social-gallery .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.item-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.item-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.item-4 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.item-5 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.item-center {
  grid-column: 3 / 5;
  grid-row: 1 / 4;
  height: 457px;
}

.item-6 {
  grid-column: 5 / 6;
  grid-row: 1 / 2;
}

.item-7 {
  grid-column: 6 / 7;
  grid-row: 1 / 2;
}

.item-8 {
  grid-column: 5 / 6;
  grid-row: 2 / 3;
}

.item-9 {
  grid-column: 6 / 7;
  grid-row: 2 / 3;
}

.item-3 {
  grid-column: 5 / 6;
  grid-row: 3 / 4;
}

.social-gallery img:hover {
  transform: scale(1.05);
}

/* ============================== 
   OFFICES SECTION 
================================ */
.offices-section {
  padding: 70px 0;
}

.offices-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.offices-section .section-title {
  text-align: center;
  color: #0e54ae;
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 40px;
}

.offices-slider .offices-slide {
  padding: 0 20px;
  background: #fff;
}

.office-card {
  background: #F2F2F2;
  border-radius: 18px;
  overflow: hidden;
}

.office-card__media {
  height: 210px;
}

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

.office-card__body {
  position: relative;
  padding: 44px 26px 26px;
  min-height: 210px;
}

.office-pin {
  position: absolute;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #a64b93;
  box-shadow: 0 10px 30px rgba(166, 75, 147, 0.25);
  display: inline-block;
}

.office-pin:before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  background: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='black' d='M172.3 501.7C26.6 291 0 269.4 0 192 0 86 86 0 192 0s192 86 192 192c0 77.4-26.6 99-172.3 309.7a24 24 0 0 1-39.4 0zM192 272a80 80 0 1 0 0-160 80 80 0 1 0 0 160z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='black' d='M172.3 501.7C26.6 291 0 269.4 0 192 0 86 86 0 192 0s192 86 192 192c0 77.4-26.6 99-172.3 309.7a24 24 0 0 1-39.4 0zM192 272a80 80 0 1 0 0-160 80 80 0 1 0 0 160z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.office-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.office-meta__row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #1b1b1b;
  font-size: 15px;
  line-height: 1.5;
}

.office-meta__text {
  color: #202020;
  font-weight: 600;
}

.office-meta__link {
  color: #202020;
  font-weight: 600;
  text-decoration: none;
}

.office-meta__link:hover {
  text-decoration: underline;
}

.office-ico {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  background: #a64b93;
}

.office-ico--loc {
  width: 22px;
  height: 22px;
  background-color: var(--secondary-color);
  -webkit-mask: url("https://dentalcare.devbuildpro.com/wp-content/uploads/2026/01/Group-1.svg") center/contain no-repeat;
  mask: url("https://dentalcare.devbuildpro.com/wp-content/uploads/2026/01/Group-1.svg") center/contain no-repeat;
}

.office-ico--mail {
  width: 22px;
  height: 22px;
  background-color: var(--secondary-color);
  -webkit-mask: url("https://dentalcare.devbuildpro.com/wp-content/uploads/2026/01/Vector-2.svg") center/contain no-repeat;
  mask: url("https://dentalcare.devbuildpro.com/wp-content/uploads/2026/01/Vector-2.svg") center/contain no-repeat;
}

.office-ico--phone {
  width: 22px;
  height: 22px;
  background-color: var(--secondary-color);
  -webkit-mask: url("https://dentalcare.devbuildpro.com/wp-content/uploads/2026/01/Vector-3.svg") center/contain no-repeat;
  mask: url("https://dentalcare.devbuildpro.com/wp-content/uploads/2026/01/Vector-3.svg") center/contain no-repeat;
}

.offices-section .slick-dots {
  bottom: -38px;
}

.offices-section .slick-dots li button:before {
  font-size: 10px;
  color: #c9c9c9;
  opacity: 1;
}

.offices-section .slick-dots li.slick-active button:before {
  color: var(--secondary-color);
  opacity: 1;
}

/* ============================== 
   QUOTE STRIP SECTION 
================================ */
.quote-strip {
  padding: 70px 0;
  background: #fff;
}

.quote-strip .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.quote-strip__wrap {
  position: relative;
  max-width: 1020px;
  margin: 0 auto;
  text-align: left;
  padding: 0 50px;
}

.quote-strip__wrap::before,
.quote-strip__wrap::after {
  content: "";
  position: absolute;
  top: 6px;
  width: 56px;
  height: 56px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.quote-strip__wrap::before {
  left: -30px;
  top: -10px;
  background-image: url("https://dentalcare.devbuildpro.com/wp-content/uploads/2026/01/1.svg");
}

.quote-strip__wrap::after {
  right: -30px;
  top: 40px;
  background-image: url("https://dentalcare.devbuildpro.com/wp-content/uploads/2026/01/2.svg");
}

.quote-strip__text {
  font-size: 16px;
  line-height: 1.9;
  color: #000;
}

.quote-strip__sig {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.quote-strip__sig img {
  max-width: 170px;
  height: auto;
  display: block;
}

/* ============================== 
   CLINIC LISTING 
================================ */
.clinic-listing {
  padding: 40px 20px;
}

.clinic-card {
  border: 1px solid #cfcfcf;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  margin: 0 0 28px;
}

.clinic-card__row {
  display: flex;
  align-items: stretch;
}

.clinic-card__left {
  flex: 0 0 34%;
  max-width: 34%;
  min-height: 320px;
}

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

.clinic-card__middle {
  flex: 1 1 auto;
  padding: 34px 75px 34px 34px;
}

.clinic-brand {
  margin: 0 0 6px;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--primary-color);
}

.clinic-title {
  margin: 0 0 22px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
}

.clinic-hours-title {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--primary-color);
}

.working-hours {
  width: 100%;
  max-width: 520px;
}

.working-hours__row {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 6px 0;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}

.working-hours__day {
  font-weight: 500;
}

.working-hours__time {
  font-weight: 500;
}

.clinic-card__middle .cta-btn {
  margin-top: 22px;
  padding: 12px 28px;
}

.clinic-card__right {
  flex: 0 0 32%;
  max-width: 32%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 34px 34px 0;
}

.clinic-contact {
  width: 100%;
  background: #f1f1f1;
  border-radius: 18px;
  padding: 50px;
  position: relative;
}

.clinic-contact::before {
  content: "";
  width: 64px;
  height: 64px;
  border-radius: 100%;
  background: #a84a87 url("/wp-content/uploads/2026/01/Group-83.svg") center / 66px no-repeat;
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.clinic-contact__item {
  position: relative;
  padding-left: 34px;
  margin: 18px 0;
  font-size: 16px;
  line-height: 1.35;
  color: #111;
  font-weight: 600;
}

.clinic-contact__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.9;
}

.clinic-contact__item:nth-child(1)::before {
  background-image: url("https://dentalcare.devbuildpro.com/wp-content/uploads/2026/01/Group-3.svg");
}

.clinic-contact__item:nth-child(2)::before {
  background-image: url("https://dentalcare.devbuildpro.com/wp-content/uploads/2026/01/Vector-9.svg");
}

.clinic-contact__item:nth-child(3)::before {
  background-image: url("https://dentalcare.devbuildpro.com/wp-content/uploads/2026/01/Vector-8.svg");
}

.clinic-contact__item a {
  color: inherit;
  text-decoration: none;
}

.clinic-contact__item a:hover {
  text-decoration: underline;
}

/* ============================== 
   PACKAGES SECTION 
================================ */
.packages-section {
  padding: 60px 20px;
  text-align: center;
}
.packages-section .container{
  max-width:1200px;
  margin:0 auto;
}
.packages-slider {
  margin-top: 26px;
}

.package-slide {
  padding: 0 12px;
}

.package-card {
  border-radius: 20px;
  overflow: hidden;
  background: #f8eaf1;
  box-shadow: 0 0 9.2px 0 rgba(0, 0, 0, 0.11);
}

.package-card__img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.package-card__body {
  padding: 20px 18px 40px;
}

.package-card__title {
  margin: 20px 0;
  color: var(--primary-color);
  font-size: 21px;
  font-weight: 800;
}

.package-card__price {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: #0D0D0D;
}

.package-card__sale {
  margin: 5px 0 25px;
  font-size: 14px;
  color: #0D0D0D;
}

.package-card__details {
  margin: 0 0 15px;
  font-weight: 600;
  font-size: 14px;
  color: #0D0D0D;
}

.packages-section .section-subtitle {
  color: #000;
  margin-bottom: 45px;
}

.package-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  background: #a84a87;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}

/* ============================== 
   FOOTER SECTION 
================================ */
.site-footer {
  background-color: #f2f2f2;
  padding: 50px 20px 20px 20px;
  color: #000;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  gap: 150px;
}

.footer-column h4 {
  color: #2b59b1;
  font-size: 23px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 34px;
  font-weight: bold;
}

.links-grid {
  display: flex;
  gap: 65px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 20px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.footer-column ul li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #2b59b1;
  transform: scaleX(0);
  transform-origin: bottom left;
  transition: transform 0.3s ease-out;
}

.footer-column ul li a:hover::after {
  transform: scaleX(1);
}

.hours-list li {
  display: flex;
  gap: 80px;
  margin-bottom: 20px;
  font-size: 16px;
}

.hours-list .day {
  width: 140px;
}

.social-list li {
  margin-bottom: 15px;
}

.social-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  text-decoration: none;
  color: #000;
}

.social-list li a i {
  width: 30px;
  font-size: 22px;
  color: var(--secondary-color);
  text-align: left;
}

.footer-bottom {
  border-top: 1px solid #dcdcdc;
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 13px;
  color: #000;
}

/* ============================== 
   RESPONSIVE STYLES 
================================ */

/* Mobile - Feature Section */
@media (max-width: 768px) {
  .feature-content .item-list {
    gap: 24px;
    margin: 32px 0 0;
  }

  .feature-content .item-item {
    gap: 16px;
  }

  .feature-content .item-item:not(:last-child)::after {
    left: 34px;
    top: 70px;
    bottom: -26px;
  }

  .feature-content .item-item h4 {
    font-size: 20px;
  }

  .feature-content .item-item p {
    font-size: 15px;
  }

  .why-choose-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .stats-bottom-row {
    flex-direction: column;
    gap: 30px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stats-testimonial {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .appointment-section {
    padding: 60px 20px;
  }

  .appointment-section .booking-form {
    padding: 34px 18px 0;
  }

  .appointment-section .booking-grid {
    grid-template-columns: 1fr;
  }

  .appointment-section .booking-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Tablet - Clinic Cards */
@media (max-width: 991px) {
  .clinic-card__row {
    flex-direction: column;
  }

  .clinic-card__left,
  .clinic-card__right {
    max-width: 100%;
    flex: 0 0 auto;
  }

  .clinic-card__left {
    min-height: 240px;
  }

  .clinic-card__middle {
    padding: 22px;
  }

  .clinic-card__right {
    padding: 12px 22px 22px;
  }

  .quote-strip__wrap {
    padding: 0 90px;
  }

  .quote-strip__wrap::before,
  .quote-strip__wrap::after {
    width: 46px;
    height: 46px;
    top: 4px;
  }
}

/* Tablet - Doctor Intro */
@media (max-width: 992px) {
  .doctor-intro__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .doctor-intro__content {
    max-width: 100%;
  }
}

/* Team Grid */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .quote-strip {
    padding: 50px 0;
  }

  .quote-strip__wrap {
    padding: 0 62px;
  }

  .quote-strip__wrap::before,
  .quote-strip__wrap::after {
    width: 34px;
    height: 34px;
    top: 2px;
  }

  .quote-strip__text {
    font-size: 14px;
  }
}

/* Laptop - Team Section */
@media (max-width: 1200px) {
  .team-section-grid .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    justify-items: center;
  }
}