/* ============================== 
   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;
}

html {
  overflow-x: hidden;
}

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

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

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

/* ============================== 
   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: 35px;
}

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

.info-icon {
  width: 41px;
}

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

.info-text a {
  text-decoration: none;
}

.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::before {
  content: "Search";
  font-size: 14px;
  font-weight: 400;
  position: absolute;
  color: #b8b8b8;
  top: 54%;
  left: 16px;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.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.has-value::before {
  opacity: 0;
}

.top-bar .cta-btn {
  padding: 15px 30px;
  width: 240px;
}

.cta-btn {
  position: relative;
  overflow: hidden;
  background: var(--secondary-color);
  color: #fff;
  border: none;
  padding: 15px 50px;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  font-size: 16px;
  z-index: 1;
  display: inline-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.25);
  position: relative;
  z-index: 99;
}

.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: 10px;
  align-items: center;
}

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

.menu-item {
  list-style: none;
}

.current-menu-item > 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 {
  transform: scaleX(1);
}

/*.current-menu-item a{*/
/*    color: var(--primary-color);*/
/*}*/

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

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

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

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

.social-icons a {
  text-decoration: none;
}

/* ===============================
   PARENT MENU ITEM
================================ */
.menu-item-has-children {
  position: relative;
}

/* FULL WIDTH CLICKABLE AREA */
.menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 16px;
  position: relative;
}

/* ARROW ICON — FIXED POSITION */
.menu-item-has-children > a::after {
  content: "";
  background: transparent;
}

.menu-item-has-children > a::before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: 2px;
    bottom: 0;
    right: 0px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    background: transparent;
}

.menu-item-has-children .menu-item {
  padding: 10px 5px;
}

/* ROTATE ARROW */
.menu-item-has-children.active > a::after {
  transform: rotate(-135deg);
}
.menu-item-has-children > a:hover::after {
  transform: rotate(225deg);
  top: 3px;
  left: 20px;
}

/* ===============================
   DESKTOP DROPDOWN
================================ */
.menu-item-has-children > .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  width: max-content;
  background: #fff;
  border-radius: 8px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

@media (min-width: 992px) {
  .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
  }
}

/* =============================== MOBILE ACCORDION ================================ */
@media (max-width: 991px) {
  .menu-item-has-children > a {
    padding: 0 10px;
  }
  .menu-item-has-children > a::after {
    transform: rotate(45deg) !important;
    background: transparent;
  }
  .menu a::after {
    position: relative;
    bottom: 0px;
  }
  .menu-item-has-children > .sub-menu {
    position: static;
    display: none;
    background: transparent;
    opacity: 1;
    width: 100%;
    visibility: visible;
    padding: 0;
    list-style: none;
  }
  #menu-main-menu .menu-item {
    padding: 10px 0 0;
    width: 100%;
  }
  .menu-item-has-children .sub-menu li:nth-child(even) > a {
    padding-top: 0;
}
  .menu-item-has-children .sub-menu li a {
    padding: 12px 32px;
    display: block;
  }
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none; /* Changed from opacity/visibility to display */
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999; /* Increased z-index */
  transition: background 0.3s ease, transform 0.3s ease;
}

.back-to-top.show {
  display: flex; /* Changed to display: flex */
}

.back-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

/* ============================== 
   HERO SECTION 
================================ */
.hero-section {
  background: #fdfdfd;
  height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.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 {
  flex: 1;
  min-width: 50%;
}

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

.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;
  margin-top: 15px;
}

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

.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: 600;
}

.hero-left .cta-btn {
  height: 58px;
  border-radius: 124px;
  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;
}

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

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

/* =================================
   Page-Specific Hero Image Styles
================================= */

/* Home Page */
.home .hero-right-image img, .page-id-1192 .hero-right-image img{
  width: 758px;
  max-width: 799px;
  margin-left: -210px;
}

/* Patient Information Page */

/* Doctors Archive */
.post-type-archive-doctors .hero-right-image img {
  width: 900px;
  object-fit: contain;
  margin-right: -170px;
}

/* Service & Clinic Archives */

/* Badge Overlay */
.home .hero-right-image::after, .page-id-1192 .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: #8e8e8e;
  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;
}

.form-inner .wpcf7-list-item label {
  display: flex;
  cursor: pointer;
  align-items: flex-start;
}

.form-inner .wpcf7-list-item input[type="checkbox"] {
  flex-shrink: 0;
  margin: 0;
  margin-top: 2px;
}

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;
  width: 100%;
}

.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;
  font-weight: 400;
  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("/wp-content/uploads/2026/01/Group-3.svg");
}

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

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

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

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

/* ============================== 
   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: 40px;
}

.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-images .image-single img {
  width: 440px;
  height: 570px;
  object-fit: cover;
  border-radius: 20px;
}

.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: 36px;
  top: 70px;
  bottom: -40px;
  width: 2px;
  background: #000;
  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;
}

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

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

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

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

.stat-card p {
  font-size: 20px;
  font-weight: 700;
  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;
  text-align: center;
}

.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: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
}

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

.patient-information-sec {
  background: #fff;
}

.patient-information-sec .why-choose-container {
  padding: 40px 20px 0px;
}

.patient-information-sec .why-choose-item {
  border-radius: 19.64px;
  border: 1px solid #f4f4f4;
}

.patient-information-sec .section-title,
.patient-information-sec .why-title,
.patient-information-sec .why-text {
  color: #000;
}

/* ============================== 
   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;
  width: 90%;
}

.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: 700;
  color: var(--secondary-color);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 21px;
  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 0px 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.is-flipped .flip-inner {
  transform: rotateY(180deg);
}

.team-card.is-flipped .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: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 24px;
  position: absolute;
  bottom: -60px;
}

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

.services-section .slider-btn.prev:hover,
.services-section .slider-btn.next:hover {
  background-color: #c4c4c4;
}

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

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

.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;
  width: 85%;
  margin: 0 auto 13%;
}

.insurance-card {
  max-width: 1200px;
  margin: -220px auto 50px;
  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;
  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: var(--secondary-color);
  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: 22px;
}

.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;
  margin-top: -300px;
}

.teams-slider {
  overflow-x: hidden;
  max-width: 1224px;
  padding-inline: 20px;
  /*height: 450px;*/
  align-items: center;
  margin-bottom: 50px;
}

.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 h3 a {
  text-decoration: none;
  color: #fff;
}

.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;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doctor-info-meta .fa-brands,
.doctor-info-meta .fab {
  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.prev:hover,
.teams-slider-wrapper .slider-btn.next:hover {
  background-color: #c4c4c4;
}

.teams-slider-wrapper .slider-btn.prev {
  background-color: var(--secondary-color);
  color: #ffffff;
}

.teams-slider-wrapper .slider-btn.next {
  background-color: var(--secondary-color);
  color: #ffffff;
}

/* 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;
  margin-bottom: 40px;
}

.founder-profile-link {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  background: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  z-index: 1;
}

.founder-profile-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  transition: left 0.4s ease;
  z-index: -1;
  border-radius: 50px;
}

.founder-profile-link:hover::before {
  left: 0;
}

.founder-profile-link:hover {
  color: #fff;
}

.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-17-2.webp);
  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: 40px;
}

.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: 11px;
  height: 11px;
  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: 40px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}

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

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

.comparison-dots .dot {
  width: 13px;
  height: 13px;
  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;
}

.post-type-archive-doctors .appointment-section {
  padding: 10px 20px 70px;
  background: transparent;
  z-index: 1;
  position: relative;
}

.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: var(--primary-color);
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
}

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

.appointment-section .booking-brand {
  margin: 0 0 6px;
  opacity: 1;
  font-size: 24px;
  font-weight: 500;
}

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

.appointment-section .booking-subtitle {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.9;
}

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

.appointment-section .field label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

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

.appointment-section .wpcf7-form-control.wpcf7-acceptance {
  margin-bottom: 10px;
}

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

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

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

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

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

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

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

.appointment-section .booking-submit .wpcf7-submit {
  background: var(--secondary-color);
  border: 0;
  padding: 18px 40px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

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

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

.wpcf7-spinner {
  display: none;
}

.booking-footer {
  margin-top: 40px;
  padding: 40px 0;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.booking-info {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  flex-wrap: wrap;
}

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

.info-icon {
  flex-shrink: 0;
  color: #fff;
}

.info-icon svg {
  width: 40px;
  height: 40px;
}

.info-content h3 {
  font-size: 27px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 5px 0;
}

.info-content a {
  text-decoration: none;
  color: #fff;
}

.info-content p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/*Booking Appointment Form*/

/* ===================================
   Appointment Booking Form Styles
=================================== */

.appointment-booking-form {
  width: 100%;
  padding: 40px 40px 0;
  background: var(--primary-color);
  border-radius: 16px;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.booking-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booking-form-field-full {
  grid-column: 1 / -1;
}

/* Label Styles */
.booking-form-label {
  color: #fff;
  text-align: left;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 5px;
}

/* Input & Select Base Styles */
.booking-form-input,
.booking-form-select,
.booking-form-textarea {
  width: 100%;
  padding: 12px 20px;
  background: #fff;
  border: none;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20.8px;
  outline: none;
  transition: box-shadow 0.3s ease;
}

.booking-form-input:focus,
.booking-form-select:focus,
.booking-form-textarea:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Placeholder Styles */
.booking-form-input::placeholder,
.booking-form-textarea::placeholder {
  color: #8e8e8e;
  font-family: "SF Pro Display", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20.8px;
}

/* Select Dropdown */
.booking-form-select {
  color: #8e8e8e;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%238E8E8E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px;
  padding-right: 45px;
  cursor: pointer;
}

.booking-form-select:focus,
.booking-form-select:valid {
  color: #000;
}

/* Date Input with Custom Icon */
.booking-form-date {
  background-image: url("https://dentaldemo2.devbuildpro.com/wp-content/themes/Dental%20Care%20Theme/assets/img/form-calender.svg");
  background-repeat: no-repeat;
  background-position: left 10px center;
  padding-left: 50px;
  cursor: pointer;
  color: #8e8e8e;
  background-size: 40px;
}

.booking-form-date:valid,
.booking-form-date:focus {
  color: #000;
}

/* Hide default date picker icon */
.booking-form-date::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

/* Hide the default date format placeholder (dd/mm/yyyy) */
.booking-form-date::-webkit-datetime-edit-text,
.booking-form-date::-webkit-datetime-edit-month-field,
.booking-form-date::-webkit-datetime-edit-day-field,
.booking-form-date::-webkit-datetime-edit-year-field {
  display: none;
}

/* Show only when date is selected or focused */
.booking-form-date:focus::-webkit-datetime-edit-text,
.booking-form-date:focus::-webkit-datetime-edit-month-field,
.booking-form-date:focus::-webkit-datetime-edit-day-field,
.booking-form-date:focus::-webkit-datetime-edit-year-field,
.booking-form-date:valid::-webkit-datetime-edit-text,
.booking-form-date:valid::-webkit-datetime-edit-month-field,
.booking-form-date:valid::-webkit-datetime-edit-day-field,
.booking-form-date:valid::-webkit-datetime-edit-year-field {
  display: inline;
  color: #000;
}

/* Custom placeholder using pseudo-element */
.booking-form-date::before {
  content: "Appointment Date";
  color: #8e8e8e;
  position: absolute;
  pointer-events: none;
}

.booking-form-date:focus::before,
.booking-form-date:valid::before {
  display: none;
}

/* For webkit browsers - show custom icon */
.booking-form-date::-webkit-datetime-edit {
  padding-left: 0;
}

.booking-form-date::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

.booking-form-field .booking-form-date {
  width: 100%;
  width: -webkit-fill-available; /* iOS / macOS Safari */
  width: fill-available;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  height: 45px;
}

/* Placeholder styling for empty date input */
.booking-form-date::-webkit-datetime-edit-text,
.booking-form-date::-webkit-datetime-edit-month-field,
.booking-form-date::-webkit-datetime-edit-day-field,
.booking-form-date::-webkit-datetime-edit-year-field {
  color: #8e8e8e;
}

.booking-form-date:focus::-webkit-datetime-edit-text,
.booking-form-date:focus::-webkit-datetime-edit-month-field,
.booking-form-date:focus::-webkit-datetime-edit-day-field,
.booking-form-date:focus::-webkit-datetime-edit-year-field,
.booking-form-date:valid::-webkit-datetime-edit-text,
.booking-form-date:valid::-webkit-datetime-edit-month-field,
.booking-form-date:valid::-webkit-datetime-edit-day-field,
.booking-form-date:valid::-webkit-datetime-edit-year-field {
  color: #000;
}

/* Textarea */
.booking-form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer Section */
.booking-form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Checkbox */
.booking-form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-form-checkbox input[type="checkbox"] {
  width: 14px;
  height: 14px;
  cursor: pointer;
  accent-color: #fff;
}

.booking-form-checkbox-label {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
}

.appointment-booking-form .cta-btn::before,
.cta-section .cta-btn::before {
  background: #fff;
}

.appointment-booking-form .cta-btn:hover,
.cta-section .cta-btn:hover {
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .appointment-booking-form {
    padding: 30px 20px;
  }

  .booking-form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .booking-form-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-form-date {
    background-size: 40px 40px;
    padding-left: 45px;
    background-position: left 4px center;
    background-repeat: no-repeat;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .appointment-booking-form {
    padding: 20px 15px;
  }

  .booking-form-label {
    font-size: 14px;
  }

  .booking-form-input,
  .booking-form-select,
  .booking-form-textarea {
    padding: 14px 16px;
    font-size: 14px;
  }

  .booking-form-date {
    background-size: 35px;
    padding-left: 40px;
  }
}

/*New form CSS*/

/* =================================
   Appointment Simple Form - Complete CSS
================================= */

.appointment-simple-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 100%;
}

/* =================================
   Input with Icon
================================= */

.appointment-simple-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.appointment-simple-icon {
  position: absolute;
  left: 11px;
  width: 37px;
  height: 36px;
  pointer-events: none;
  z-index: 1;
}

/* Hide icon for date field */
.appointment-simple-input-wrap:has(.appointment-simple-date)
  .appointment-simple-icon {
  display: none;
}

.appointment-simple-field {
  width: 100%;
  padding: 16px 20px 16px 55px;
  border: 1px solid #b9b9b9;
  border-radius: 0px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  background: #fff;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.appointment-simple-field::placeholder {
  color: #999;
  font-size: 16px;
}

.appointment-simple-field:focus {
  border-color: #b15092;
  box-shadow: 0 0 0 3px rgba(177, 80, 146, 0.1);
}

/* =================================
   Date Field - Icon on LEFT Side
================================= */

.appointment-simple-input-wrap .appointment-simple-date,
.appointment-simple-input-wrap input[type="text"].appointment-simple-date {
  padding-left: 55px !important;
  padding-right: 20px !important;
  background-image: url("https://dentaldemo2.devbuildpro.com/wp-content/themes/Dental%20Care%20Theme/assets/img/form-calender.svg") !important;
  background-repeat: no-repeat !important;
  background-position: left 7px center !important;
  background-size: 45px auto !important;
}

/* Hide default browser calendar picker */
.appointment-simple-date::-webkit-calendar-picker-indicator {
  display: none !important;
}

/* Hide date format when empty */
.appointment-simple-date::-webkit-datetime-edit-text,
.appointment-simple-date::-webkit-datetime-edit-month-field,
.appointment-simple-date::-webkit-datetime-edit-day-field,
.appointment-simple-date::-webkit-datetime-edit-year-field {
  color: transparent;
}

/* Show date when selected */
.appointment-simple-date:focus::-webkit-datetime-edit-text,
.appointment-simple-date:focus::-webkit-datetime-edit-month-field,
.appointment-simple-date:focus::-webkit-datetime-edit-day-field,
.appointment-simple-date:focus::-webkit-datetime-edit-year-field,
.appointment-simple-date:valid::-webkit-datetime-edit-text,
.appointment-simple-date:valid::-webkit-datetime-edit-month-field,
.appointment-simple-date:valid::-webkit-datetime-edit-day-field,
.appointment-simple-date:valid::-webkit-datetime-edit-year-field {
  color: #333 !important;
}

/* =================================
   Checkbox Styling
================================= */

.appointment-simple-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  margin: 8px 0;
}

.appointment-simple-checkbox input[type="checkbox"] {
  width: 14px;
  height: 14px;
  min-width: 17px;
  cursor: pointer;
  accent-color: #b15092;
  border: 2px solid #ccc;
  border-radius: 4px;
  margin-right: 10px;
}

.appointment-simple-checkbox span {
  font-size: 12px;
  color: #000;
  line-height: 1.5;
  font-weight: 500;
}

/* =================================
   Form Footer Section
================================= */

.appointment-simple-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.appointment-simple-footer .cta-btn {
  padding: 17px 25px;
  font-size: 14px;
  background: linear-gradient(135deg, #b15092 0%, #8e3f74 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(177, 80, 146, 0.3);
  font-family: inherit;
}

.appointment-simple-footer .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(177, 80, 146, 0.4);
}

.appointment-simple-footer .cta-btn:active {
  transform: translateY(0);
}

.appointment-simple-privacy {
  font-size: 12px;
  color: #000;
  margin: 0;
  font-weight: 500;
}

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

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

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

/*.doctor-intro__content {*/
/*  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: #fafafa;
  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, 0.25);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.intro-social__icons a:hover {
  transform: translateY(-2px);
  background: rgba(14, 84, 174, 0.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: 10px;
}

.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;
}

.blog-section .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;
  margin-top: 4px;
}

.blog-section .learn-more span {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.blog-section .learn-more:hover span {
  transform: translateX(6px);
}

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

.blog-dots li {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d9d9d9;
}

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

.blog-dots li.slick-active {
  background: var(--secondary-color);
}

/* ============================== 
   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 ul li:first-child img.contact-icon {
  margin-top: -45px;
}

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

.contact-card h2 {
  font-size: 30px;
  margin-bottom: 24px;
  font-weight: 700;
}

.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;
  font-size: 18px;
  font-weight: 500;
  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;
  transition-duration: 0.5s;
}

.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;
  margin: 0 0 40px;
}

.offices-slider .offices-slide {
  padding: 0 10px;
  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: 80px 26px 35px;
  min-height: 210px;
}

.office-pin {
  position: absolute;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
  width: 55px;
  height: 55px;
  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: 29px;
  height: 29px;
  background: #fff;
  -webkit-mask: url("/wp-content/uploads/2026/01/Vector-32.svg") center/contain
    no-repeat;
  mask: url("/wp-content/uploads/2026/01/Vector-32.svg") center/contain
    no-repeat;
}

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

.office-meta .office-meta__row:first-child {
  margin-bottom: 20px;
}

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

.office-meta__text {
  color: #000;
  font-size: 18px;
  font-weight: 600;
}

.office-meta__link {
  color: #000;
  font-size: 18px;
  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: 30px;
  height: 30px;
  margin-top: 6px;
  background-color: var(--secondary-color);
  -webkit-mask: url("/wp-content/uploads/2026/01/Group-1.svg") center/contain
    no-repeat;
  mask: url("/wp-content/uploads/2026/01/Group-1.svg") center/contain no-repeat;
}

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

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

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

.offices-section .slick-dots li {
  margin-inline: 3px;
}

.offices-section .slick-dots li button:before {
  font-size: 14px;
  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("/wp-content/uploads/2026/01/1.svg");
}

.quote-strip__wrap::after {
  right: 0;
  top: 40px;
  background-image: url("/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;
}

/* ============================== 
   PACKAGES SECTION 
================================ */
.packages-section {
  padding: 60px 20px;
  text-align: center;
  background: #fff;
}
.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: #fff6fc;
  box-shadow: 0 0 9.2px 0 rgba(0, 0, 0, 0.11);
}

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

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

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

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

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

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

.packages-section .section-subtitle {
  color: #000;
  margin: 0 auto 45px;
  width: 85%;
}

.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;
}

.packages-section .slick-dots {
  margin-top: 15px;
  position: relative;
}

.packages-section .slick-dots .slick-active button:before {
  font-size: 13px;
  opacity: 1;
  color: var(--secondary-color);
}

.packages-section .slick-dots li button:before {
  font-size: 13px;
  color: #d9d9d9;
  opacity: 1;
}

/* ============================== 
   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-flex;
  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: 10px;
  padding-top: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.cta-section {
  background: var(--primary-color);
  padding: 45px 20px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.cta-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text {
  flex: 1;
  color: #ffffff;
}

.cta-text h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 10px 0;
  color: #ffffff;
}

.cta-text p {
  font-size: 35px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  color: #fff;
}

.cta-text a {
  font-weight: 700;
}

/* Contact Dentalcure Section */

.contact-dentalcure {
  padding: 80px 0;
}

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

/* Header */
.contact-dentalcure .contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-dentalcure .contact-description {
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  max-width: 800px;
  margin: 0 auto;
}

/* Contact Grid */
.contact-dentalcure .contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-dentalcure .contact-item {
  background: #fafafa;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-dentalcure .contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Icon */
.contact-dentalcure .contact-icon {
  margin-bottom: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-dentalcure .contact-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* Title */
.contact-dentalcure .contact-item-title {
  font-size: 21px;
  font-weight: 700;
  color: #000;
  margin: 0 0 15px 0;
}

/* Content */
.contact-dentalcure .contact-item-content {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.contact-dentalcure .contact-item-content p {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.contact-dentalcure .contact-item-content p:last-child {
  margin-bottom: 0;
}

/* Contact Links */
.contact-dentalcure .contact-link {
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-dentalcure .contact-link:hover {
  color: var(--secondary-color);
  transform: translateX(3px);
}

/* Dental Office Form Section */
.dental-office-form {
  padding: 20px 0 80px;
  background-color: #fff;
}

.dental-office-form .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.office-form-wrapper {
  display: grid;
  grid-template-columns: 48% 52%;
  gap: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Left Side Image */
.office-form-image {
  position: relative;
  overflow: hidden;
}

.office-form-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Side Form */
.office-form-content {
  background: linear-gradient(135deg, #0066cc 0%, #004d99 100%);
  padding: 60px 50px;
  color: #fff;
}

.office-form-header {
  text-align: left;
  margin-bottom: 40px;
}

.form-tag {
  display: inline-block;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.form-title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

/* Form Styling */
.office-form .wpcf7-form {
  /* Form container */
}

.office-form-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="date"],
.form-field select {
  width: 100%;
  padding: 14px 15px;
  border: none;
  border-radius: 0px;
  font-size: 16px;
  font-weight: 500;
  background: #fff;
  color: #333;
  outline: none;
  transition: all 0.3s ease;
  margin-top: 12px;
}

.form-field input:focus,
.form-field select:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.form-field input::placeholder {
  color: #8e8e8e;
}

.form-field input[type="date"],
.form-field select {
  color: #8e8e8e;
}

.form-field input[type="date"]:valid,
.form-field select:valid {
  color: #8e8e8e;
}

.form-field select option {
  color: #8e8e8e;
}

.form-field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.form-field input[type="date"],
.form-field select {
  width: 100%;
  width: -webkit-fill-available;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

/* Form Actions */
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.form-consent {
  flex: 1;
}

.form-consent .wpcf7-list-item {
  margin: 0;
}

.form-consent p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-submit {
  flex-shrink: 0;
}

.form-submit input[type="submit"],
.form-submit button {
  background: linear-gradient(135deg, #b85c9e 0%, #8e4585 100%);
  color: #fff;
  border: none;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(184, 92, 158, 0.4);
}

.form-submit input[type="submit"]:hover,
.form-submit button:hover {
  background: linear-gradient(135deg, #8e4585 0%, #b85c9e 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 92, 158, 0.5);
}

/* CF7 Validation */
.wpcf7-not-valid-tip {
  color: red;
  font-size: 12px;
  margin-top: 5px;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ok {
  border: none;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  text-align: center;
}

.wpcf7-validation-errors {
  background: rgba(255, 235, 59, 0.2);
  color: #ffeb3b;
}

.wpcf7-mail-sent-ok {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
}

/*Text Center*/

.text-center-box .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

#text-left-box .container {
  padding: 20px 20px 80px;
  text-align: left;
}

.text-center-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.insurance-providers-section {
  padding: 30px 0 60px;
}

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

.insurance-providers-section .section-title {
  text-align: center;
  margin-bottom: 30px;
}

.providers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 70px;
}

.provider-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.provider-card img {
  max-width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}

.cta-wrap {
  text-align: center;
}
/*Info Card Section*/

.insurance-info-section {
  padding: 20px 20px 60px;
}

.insurance-info-section .info-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.insurance-info-section .info-card {
  background: linear-gradient(135deg, #0066cc, #004d99);
  border-radius: 20px;
  padding: 40px 32px;
  color: #fff;
  min-height: 300px;
}

.insurance-info-section .card-content {
  display: flex;
  gap: 24px;
}

/* Icon box - separate dotted border */
.insurance-info-section .card-icon-box {
  flex-shrink: 0;
}

.insurance-info-section .card-icon {
  width: 80px;
  height: 80px;
}

.insurance-info-section .card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.insurance-info-section .card-text-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.insurance-info-section .card-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.insurance-info-section .card-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.95;
}

.insurance-info-section .card-description p {
  margin: 0 0 12px;
}

.insurance-info-section .card-subtitle {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 400;
}

.insurance-info-section .card-description ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.insurance-info-section .card-description ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}

.insurance-info-section .card-description ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: #fff;
  font-weight: bold;
}

.insurance-info-section .phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 2px solid #fff;
  border-radius: 50px;
  font-size: 11px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  width: fit-content;
  margin-top: 8px;
}

.insurance-info-section .phone-btn:hover {
  background: #fff;
  color: var(--primary-color);
}

.insurance-info-section .phone-btn:hover svg path {
  fill: var(--primary-color);
}

.insurance-info-section .phone-btn svg {
  flex-shrink: 0;
}

/*404 Page CSS*/

.error-404 {
  padding: 120px 0;
  text-align: center;
}

.error-404 h1 {
  font-size: 120px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.error-404 h2 {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.error-404 p {
  margin-bottom: 25px;
}

.error404 .social-media-section {
  display: none;
}

.thank-you-section {
  padding: 100px 0;
  text-align: center;
}

.thank-you-section h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.thank-you-section p {
  font-size: 18px;
  margin-bottom: 30px;
}

.button-group-section {
  padding: 60px 20px;
}

.button-group-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  gap: 45px;
  justify-content: space-between;
}

.btn-group-item {
  padding: 20px 30px;
  background: #fff;
  border: 1px solid var(--secondary-color);
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.btn-group-item:hover {
  background: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ===============================
   PERFORMANCE: LAYOUT CONTAINMENT
================================ */
/* .feature-section,
.stats-section,
.services-section,
.insurance-content-section,
.insurance-card,
.blog-section {
  contain: layout paint;
} */

/* Team sliders */
/* .team-section,
.teams-slider-wrapper,
.testimonials-section,
.slick-slider {
  contain: layout paint style;
} */

/* Below the fold */
/* .comparison-section,
.social-media-section {
  contain: layout paint;
} */

/* .site-footer {
  contain: layout paint;
} */

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
}
