:root {
  --primary: #9d48c1;
  --secondary: #7a2ca8;
}

body {
  margin: 0;
  font-family: "Raleway", sans-serif;
}

.container {
  max-width: 1440px !important;
}

em {
  color: var(--primary);
  font-weight: 700;
}

/* Global Button Styles */
.btn {
  padding: 12px 30px !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease !important;
  cursor: pointer !important;
  border: none !important;
  text-decoration: none !important;
  display: inline-block !important;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary) !important;
  border: 1px solid transparent !important;
  color: #fff !important;
}

.btn-outline {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.75) !important;
  color: #fff !important;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12) !important;
}

#top-bar {
  background-color: var(--primary);
}

#top-bar .container {
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#top-bar .container a {
  font-size: 1rem;
  cursor: pointer;
  font-weight: 400;
}

#top-bar .container .social {
  display: flex;
  align-items: center;
  gap: 8px;
}

#top-bar .container .social a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 99px;
  height: 30px;
  color: white;
  width: 30px;
  transition: 0.3s all;
  cursor: pointer;
}

#top-bar .container .social a:hover {
  color: var(--primary);
  background-color: white;
}

#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  padding: 12px 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  transition: all 0.3s ease;
}

#navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#navbar .container .logo {
  flex-shrink: 0;
}

#navbar .container .logo img {
  max-height: 70px;
  transition: transform 0.3s ease;
}

#navbar .container .logo img:hover {
  transform: scale(1.05);
}

#navbar .container .desktop-nav {
  display: flex;
  gap: 8px;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}

#navbar .container .desktop-nav .nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

#navbar .container .desktop-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

#navbar .container .desktop-nav .nav-link:hover {
  color: var(--primary);
  background: rgba(157, 72, 193, 0.05);
}

#navbar .container .desktop-nav .nav-link:hover::after {
  width: 100%;
}

#navbar .container .desktop-nav .nav-link.active {
  color: var(--primary);
}

#navbar .container .desktop-nav .nav-link.active::after {
  width: 100%;
}

#navbar .container .desktop-nav .dropdown {
  position: relative;
}

#navbar .container .desktop-nav .dropdown .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

#navbar .container .desktop-nav .dropdown .dropdown-toggle::after {
  display: none;
  content: none;
}

#navbar .container .desktop-nav .dropdown .dropdown-menu {
  position: absolute;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
  display: none;
  flex-direction: column;
  gap: 0;
  z-index: 50;
}

#navbar .container .desktop-nav .dropdown:hover .dropdown-menu {
  display: flex;
}

#navbar .container .desktop-nav .dropdown .dropdown-item {
  padding: 10px 16px;
  color: #333;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease;
}

#navbar .container .desktop-nav .dropdown .dropdown-item:hover {
  background: rgba(157, 72, 193, 0.08);
  color: var(--primary);
}

#navbar .container .desktop-nav .btn-primary {
  margin-left: 20px;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  color: #fff;
  background: var(--primary);
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
}

#navbar .container .desktop-nav .btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(157, 72, 193, 0.3);
}

#navbar .container .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

#navbar .container .mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

#navbar .container .mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

#navbar .container .mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

#navbar .container .mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

#navbar .container .mobile-sidebar {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #fff;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 100;
  overflow-y: auto;
  padding-top: 20px;
}

#navbar .container .mobile-sidebar.active {
  right: 0;
}

#navbar .container .mobile-sidebar .sidebar-close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin: 0 20px 20px auto;
  color: #333;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

#navbar .container .mobile-sidebar .sidebar-close:hover {
  color: var(--primary);
}

#navbar .container .mobile-sidebar .mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 20px;
}

#navbar .container .mobile-sidebar .mobile-nav .nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

#navbar .container .mobile-sidebar .mobile-nav .nav-link:hover {
  color: var(--primary);
  background: rgba(157, 72, 193, 0.05);
}

#navbar .container .mobile-sidebar .mobile-nav .nav-link.active {
  color: var(--primary);
  background: rgba(157, 72, 193, 0.1);
  border-left-color: var(--primary);
}

#navbar .container .mobile-sidebar .mobile-nav .mobile-service-menu {
  width: 100%;
  margin-top: 10px;
}

#navbar .container .mobile-sidebar .mobile-nav .mobile-service-menu summary {
  list-style: none;
  cursor: pointer;
  display: block;
  width: 100%;
}

#navbar .container .mobile-sidebar .mobile-nav .mobile-service-menu .nav-link {
  display: inline-flex;
  width: 100%;
  padding: 12px 16px;
}

#navbar .container .mobile-sidebar .mobile-nav .mobile-service-menu .mobile-service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
  padding-left: 10px;
}

#navbar .container .mobile-sidebar .mobile-nav .mobile-service-menu .mobile-service-list .nav-link {
  background: rgba(157, 72, 193, 0.04);
  border-radius: 8px;
}

#navbar .container .mobile-sidebar .mobile-nav .btn-primary {
  margin-top: 20px;
  padding: 12px 20px;
  text-align: center;
  width: 100%;
}

@media (max-width: 768px) {
  #navbar {
    padding: 10px 15px;
  }

  #navbar .container .desktop-nav {
    display: none;
  }

  #navbar .container .mobile-menu-toggle {
    display: flex;
  }

  #navbar .container .mobile-sidebar {
    display: block;
  }
}

/* Appointment booking */
.appointment-page {
  max-width: 1120px !important;
  padding: 72px 20px 92px;
}

.appointment-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin: 0 auto 40px;
  max-width: 900px;
}

.appointment-steps::before {
  content: "";
  position: absolute;
  top: 19px;
  height: 2px;
  background: #e8e1eb;
  left: 12%;
  right: 12%;
  z-index: 0;
}

.appointment-step {
  z-index: 1;
  text-align: center;
  color: #948c97;
  font-size: .82rem;
  display: grid;
  justify-items: center;
  gap: 8px;
}

.appointment-step span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1edf3;
  color: #88778e;
  display: grid;
  place-items: center;
  font-weight: 800;
  border: 2px solid #f1edf3;
}

.appointment-step strong {
  font-weight: 700;
}

.appointment-step.active,
.appointment-step.complete {
  color: var(--primary);
}

.appointment-step.active span {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(157, 72, 193, .25);
}

.appointment-step.complete span {
  background: #f3e6f8;
  color: var(--primary);
  border-color: var(--primary);
}

.appointment-wizard {
  background: #fff;
  border: 1px solid #eee7f0;
  box-shadow: 0 18px 50px rgba(61, 25, 74, .08);
  border-radius: 22px;
  padding: 48px;
}

.appointment-panel {
  display: none;
}

.appointment-panel.active {
  display: block;
  animation: appointmentFade .28s ease both;
}

@keyframes appointmentFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.wizard-heading {
  margin-bottom: 32px;
}

.wizard-heading>span,
.appointment-success>span {
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: .09em;
  font-size: .75rem;
}

.wizard-heading h2,
.appointment-success h2 {
  font-size: 2rem;
  color: #312434;
  margin: 7px 0 9px;
  font-weight: 800;
}

.wizard-heading p,
.appointment-success p {
  color: #746c76;
  margin: 0;
}

.doctor-selection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.appointment-doctor-card {
  cursor: pointer;
  position: relative;
  padding: 18px;
  border: 1px solid #e8e1eb;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 13px;
  transition: .2s;
}

.appointment-doctor-card:hover {
  border-color: #cda6dc;
  transform: translateY(-2px);
}

.appointment-doctor-card:has(input:checked) {
  border-color: var(--primary);
  background: #fcf8fd;
  box-shadow: 0 8px 24px rgba(157, 72, 193, .12);
}

.appointment-doctor-card input {
  position: absolute;
  opacity: 0;
}

.appointment-doctor-card img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
}

.doctor-choice-copy {
  display: grid;
  gap: 3px;
}

.doctor-choice-copy strong {
  color: #342938;
  font-size: .95rem;
}

.doctor-choice-copy small {
  color: var(--primary);
  font-weight: 700;
}

.doctor-choice-copy em {
  font-style: normal;
  color: #857c88;
  font-size: .75rem;
}

.appointment-doctor-card>i {
  display: none;
  color: var(--primary);
  margin-left: auto;
  font-size: 1.15rem;
}

.appointment-doctor-card:has(input:checked)>i {
  display: block;
}

.booking-fields {
  display: grid;
  gap: 20px;
}

.booking-fields.two-columns {
  grid-template-columns: repeat(2, 1fr);
}

.appointment-field {
  display: grid;
  gap: 8px;
}

.appointment-field.full-width {
  grid-column: 1 / -1;
}

.appointment-field label {
  color: #403545;
  font-weight: 700;
  font-size: .93rem;
}

.appointment-field label small {
  color: #908693;
  font-weight: 500;
}

.appointment-field input,
.appointment-field select,
.appointment-field textarea {
  width: 100%;
  border: 1px solid #ded6e1;
  border-radius: 10px;
  padding: 13px 14px;
  color: #382d3d;
  font: inherit;
  outline: none;
  transition: border .2s, box-shadow .2s;
}

.appointment-field textarea {
  resize: vertical;
}

.appointment-field input:focus,
.appointment-field select:focus,
.appointment-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(157, 72, 193, .12);
}

.slot-heading {
  margin: 34px 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.slot-heading h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #403545;
  margin: 0;
}

.slot-heading p {
  color: #887e8b;
  font-size: .85rem;
  margin: 0;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.time-slots label {
  cursor: pointer;
}

.time-slots input {
  position: absolute;
  opacity: 0;
}

.time-slots span {
  display: block;
  border: 1px solid #e1dae3;
  border-radius: 9px;
  padding: 12px;
  text-align: center;
  color: #504653;
  font-weight: 700;
  font-size: .9rem;
  transition: .2s;
}

.time-slots label:hover span,
.time-slots input:checked+span {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.form-error {
  min-height: 1.1rem;
  margin: 10px 0 0;
  color: #c23a56;
  font-size: .86rem;
  font-weight: 600;
}

.wizard-actions {
  border-top: 1px solid #eee8f0;
  margin-top: 38px;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.wizard-actions.end {
  justify-content: flex-end;
}

.wizard-actions .btn-light {
  background: #f3eff4 !important;
  color: #493b4f !important;
}

.appointment-summary {
  border: 1px solid #ece4ee;
  border-radius: 14px;
  overflow: hidden;
}

.summary-row {
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 145px 1fr;
  column-gap: 16px;
  border-bottom: 1px solid #eee8f0;
}

.summary-row:last-child {
  border: 0;
}

.summary-row span {
  color: #8b818e;
  font-size: .87rem;
}

.summary-row strong {
  color: #382d3d;
  font-size: .96rem;
}

.summary-row small {
  grid-column: 2;
  color: var(--primary);
  margin-top: 3px;
  font-weight: 600;
}

.appointment-success {
  text-align: center;
  /* max-width: 570px; */
  margin: 30px auto;
}

.appointment-success[hidden] {
  display: none;
}

.success-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f2e2f8;
  color: var(--primary);
  font-size: 2rem;
  margin: 0 auto 22px;
}

.appointment-success p {
  line-height: 1.7;
  margin: 14px 0 27px;
}

@media (max-width: 768px) {
  .appointment-page {
    padding: 45px 16px 60px;
  }

  .appointment-wizard {
    padding: 28px 20px;
  }

  .appointment-step strong {
    display: none;
  }

  .appointment-steps {
    margin-bottom: 28px;
  }

  .doctor-selection,
  .booking-fields.two-columns {
    grid-template-columns: 1fr;
  }

  .time-slots {
    grid-template-columns: repeat(2, 1fr);
  }

  .wizard-heading h2,
  .appointment-success h2 {
    font-size: 1.65rem;
  }

  .summary-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .summary-row small {
    grid-column: 1;
  }

  .wizard-actions .btn {
    padding: 11px 16px !important;
  }
}

.time-slots label.slot-unavailable {
  cursor: not-allowed;
}

.time-slots label.slot-unavailable span {
  background: #f2eef3;
  border-color: #e1dbe3;
  color: #9a909d;
  text-decoration: line-through;
}

/* Refined booking experience */
.appointment-page {
  max-width: 1240px !important;
  padding-top: 64px;
}

.appointment-steps {
  max-width: 770px;
  margin-bottom: 36px;
}

.appointment-steps::before {
  left: 13%;
  right: 13%;
  background: #e6dfe8;
}

.appointment-step {
  font-size: .75rem;
  letter-spacing: .01em;
}

.appointment-step span {
  width: 38px;
  height: 38px;
  font-size: .82rem;
  background: #fff;
  border-color: #ded5e1;
}

.appointment-step.active span {
  box-shadow: 0 7px 18px rgba(105, 48, 129, .2);
}

.appointment-step.complete span {
  background: #fff;
}

.appointment-wizard {
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 265px;
  overflow: hidden;
  border: 1px solid #e8e2e9;
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(43, 24, 50, .08);
}

.appointment-wizard form {
  min-width: 0;
}

.appointment-panel {
  padding: 48px 52px;
}

.wizard-heading {
  padding-bottom: 25px;
  margin-bottom: 29px;
  border-bottom: 1px solid #eee9ef;
}

.wizard-heading>span {
  font-size: .68rem;
  letter-spacing: .12em;
}

.wizard-heading h2 {
  font-size: 1.8rem;
  letter-spacing: -.03em;
  margin-top: 9px;
}

.wizard-heading p {
  max-width: 480px;
  font-size: .95rem;
  line-height: 1.55;
}

.doctor-selection {
  grid-template-columns: 1fr;
  gap: 11px;
}

.appointment-doctor-card {
  min-height: 112px;
  padding: 12px;
  border-radius: 11px;
  gap: 17px;
}

.appointment-doctor-card:hover {
  transform: none;
  border-color: #b58ac5;
  background: #fffdff;
}

.appointment-doctor-card img {
  width: 72px;
  height: 86px;
  object-fit: cover;
  object-position: center top;
  border-radius: 7px;
}

.doctor-choice-copy {
  gap: 4px;
}

.doctor-choice-copy strong {
  font-size: 1rem;
}

.doctor-choice-copy small {
  font-size: .82rem;
}

.doctor-choice-copy em {
  font-size: .73rem;
}

.appointment-doctor-card>i {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-size: .8rem;
}

.appointment-doctor-card:has(input:checked)>i {
  display: flex;
}

.appointment-field input,
.appointment-field select,
.appointment-field textarea {
  border-radius: 8px;
  padding: 12px 13px;
  background: #fff;
}

.appointment-field label {
  font-size: .87rem;
}

.slot-heading {
  margin-top: 30px;
}

.time-slots {
  gap: 9px;
}

.time-slots span {
  border-radius: 7px;
  padding: 11px 8px;
  font-size: .83rem;
}

.wizard-actions {
  margin-top: 34px;
  padding-top: 22px;
}

.wizard-actions .btn {
  font-size: .9rem;
}

.wizard-actions .btn-light {
  background: transparent !important;
  border: 1px solid #ded6e1 !important;
}

.appointment-assistance {
  background: #f8f5f9;
  border-left: 1px solid #ebe5ed;
  padding: 48px 28px;
  color: #514558;
}

.assistance-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #eee2f3;
  color: var(--primary);
  border-radius: 10px;
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.appointment-assistance h3 {
  color: #34293a;
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 9px;
}

.appointment-assistance>p {
  color: #776d7c;
  font-size: .86rem;
  line-height: 1.65;
  margin-bottom: 28px;
}

.assistance-detail {
  display: flex;
  gap: 10px;
  padding: 15px 0;
  border-top: 1px solid #e7deea;
}

.assistance-detail>i {
  color: var(--primary);
  margin-top: 3px;
}

.assistance-detail span {
  display: grid;
  gap: 2px;
}

.assistance-detail small {
  color: #8a7f8e;
  font-size: .72rem;
}

.assistance-detail a,
.assistance-detail strong {
  color: #45384a;
  font-size: .84rem;
  font-weight: 750;
  text-decoration: none;
}

.appointment-success {
  grid-column: 1 / -1;
  padding: 54px 30px;
  margin: 0;
}

@media (max-width: 900px) {
  .appointment-wizard {
    grid-template-columns: 1fr;
  }

  .appointment-assistance {
    display: none;
  }
}

@media (max-width: 768px) {
  .appointment-panel {
    padding: 30px 21px;
  }

  .wizard-heading {
    margin-bottom: 24px;
    padding-bottom: 21px;
  }

  .appointment-page {
    padding-top: 45px;
  }

  .appointment-wizard {
    border-radius: 14px;
  }
}


#heroSection {
  position: relative;
  overflow: hidden;
  background: url("../images/herobg.jpg") center/cover no-repeat;
  min-height: 80vh;
}

#heroSection::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 11, 25, 0.72);
  z-index: 0;
}

#heroSection .container {
  position: relative;
  z-index: 2;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 60px 20px;
}

#heroSection .container .hero-wrapper {
  display: flex;
  justify-content: center;
}

#heroSection .container .hero-content {
  width: 100%;
  max-width: 760px;
}

#heroSection .container .content-box {
  max-width: 760px;
}

#heroSection .container .badge-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 999px;
  background: white;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#heroSection .container h1 {
  font-size: clamp(2.85rem, 6vw, 4rem);
  line-height: 1.01;
  margin: 24px 0 0;
  font-weight: 700;
}

#heroSection .container p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin: 24px 0 0;
  max-width: 680px;
  color: rgb(255, 255, 255);
}

#heroSection .container .cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 2.5rem;
}

#doctorsGrid {
  padding: 60px 20px;
}

#doctorsGrid .grid-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 340px));
  justify-content: center;
  gap: 24px;
}

#doctorsGrid .grid-row.centered-two-cards {
  justify-content: center;
}

#doctorsGrid .doctor-card-grid {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

#doctorsGrid .doctor-card-grid:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

#doctorsGrid .doctor-card-grid img {
  width: 100%;
  aspect-ratio: 4/5;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

#doctorsGrid .doctor-card-body {
  padding: 20px;
  text-align: center;
}

#doctorsGrid .doctor-card-tag {
  display: inline-block;
  font-size: 13px;
  color: #0b6bcb;
  background: #eef6ff;
  padding: 6px 12px;
  border-radius: 30px;
  margin-bottom: 12px;
}

#doctorsGrid h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 6px;
  color: #222;
}

#doctorsGrid .doctor-card-experience {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
}

@media (max-width: 992px) {
  #doctorsGrid .grid-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  #doctorsGrid .grid-row {
    grid-template-columns: 1fr;
  }
}

#servicesGrid,
#doctorsGrid {
  padding: 60px 20px;
}

#servicesGrid .grid-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

#servicesGrid .service-card-grid,
#doctorsGrid .service-card-grid {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(20, 42, 80, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(20, 42, 80, 0.06);
}

#servicesGrid .service-card-image,
#doctorsGrid .service-card-image {
  min-height: 260px;
  background-size: cover;
  background-position: center;
  position: relative;
}

#servicesGrid .service-card-image::after,
#doctorsGrid .service-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.24) 100%);
}

#servicesGrid .service-card-body,
#doctorsGrid .service-card-body {
  padding: 28px 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

#servicesGrid .service-card-tag,
#doctorsGrid .service-card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(157, 72, 193, 0.1);
  color: var(--primary);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
}

#servicesGrid .service-card-body h3,
#doctorsGrid .service-card-body h3 {
  font-size: 1.4rem;
  color: #061f46;
  margin: 0;
}

#servicesGrid .service-card-body p,
#doctorsGrid .service-card-body p {
  color: rgb(75, 88, 110);
  line-height: 1.8;
  margin: 0;
  flex: 1;
}

#servicesGrid .service-card-body .btn,
#doctorsGrid .service-card-body .btn {
  width: -moz-fit-content;
  width: fit-content;
}

#servicesGrid .service-card-grid:hover,
#doctorsGrid .service-card-grid:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 80px rgba(20, 42, 80, 0.13);
}

@media (max-width: 992px) {
  #servicesGrid .grid-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {

  #servicesGrid,
  #doctorsGrid {
    padding: 40px 16px;
  }

  #servicesGrid .grid-row,
  #doctorsGrid .grid-row {
    grid-template-columns: 1fr;
  }
}

.services-highlights {
  padding: 40px 20px 0;
}

.services-highlights .services-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.services-highlights .highlight-card {
  background: #f8f6ff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 210px;
  box-shadow: 0 18px 40px rgba(20, 42, 80, 0.05);
  border: 1px solid rgba(157, 72, 193, 0.08);
}

.services-highlights .highlight-card i {
  font-size: 1.55rem;
  color: var(--primary);
}

.services-highlights .highlight-card h4 {
  margin: 0;
  font-size: 1.15rem;
}

.services-highlights .highlight-card p {
  margin: 0;
  color: rgb(75, 88, 110);
  line-height: 1.75;
}

@media (max-width: 992px) {
  .services-highlights .services-highlights-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .services-highlights {
    padding: 24px 16px 0;
  }

  .services-highlights .services-highlights-grid {
    grid-template-columns: 1fr;
  }
}

#serviceDetail,
#doctorDetail {
  padding: 60px 20px;
}

#serviceDetail .doctor-profile-top,
#doctorDetail .doctor-profile-top {
  margin-bottom: 42px;
}

#serviceDetail .doctor-profile-card,
#doctorDetail .doctor-profile-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  background: #ffffff;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 28px 80px rgba(20, 42, 80, 0.08);
  border: 1px solid rgba(157, 72, 193, 0.12);
}

#serviceDetail .doctor-profile-image,
#doctorDetail .doctor-profile-image {
  min-height: 420px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(20, 42, 80, 0.08);
}

#serviceDetail .doctor-profile-info,
#doctorDetail .doctor-profile-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: space-between;
}

#serviceDetail .doctor-profile-info .doctor-card-tag,
#doctorDetail .doctor-profile-info .doctor-card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(157, 72, 193, 0.12);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
}

#serviceDetail .doctor-profile-info h2,
#doctorDetail .doctor-profile-info h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0;
  color: #061f46;
}

#serviceDetail .doctor-title,
#serviceDetail .doctor-experience,
#doctorDetail .doctor-title,
#doctorDetail .doctor-experience {
  margin: 0;
  color: rgb(55, 65, 89);
  line-height: 1.7;
}

#serviceDetail .doctor-title,
#doctorDetail .doctor-title {
  font-weight: 700;
  font-size: 1.1rem;
}

#serviceDetail .doctor-experience,
#doctorDetail .doctor-experience {
  font-weight: 600;
}

#serviceDetail .doctor-profile-info p,
#doctorDetail .doctor-profile-info p {
  color: rgb(75, 88, 110);
  line-height: 1.85;
  margin: 0;
}

#serviceDetail .doctor-profile-actions,
#doctorDetail .doctor-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

#serviceDetail .doctor-detail-layout,
#doctorDetail .doctor-detail-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: start;
}

#serviceDetail .doctor-sidebar,
#doctorDetail .doctor-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 32px;
  align-self: start;
}

#serviceDetail .sidebar-card,
#doctorDetail .sidebar-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(20, 42, 80, 0.06);
  border: 1px solid rgba(20, 42, 80, 0.05);
}

#serviceDetail .sidebar-card h3,
#serviceDetail .sidebar-card h4,
#doctorDetail .sidebar-card h3,
#doctorDetail .sidebar-card h4 {
  margin: 0 0 18px;
  color: #061f46;
}

#serviceDetail .sidebar-services-list,
#doctorDetail .sidebar-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

#serviceDetail .sidebar-services-list li,
#doctorDetail .sidebar-services-list li {
  border-radius: 14px;
  overflow: hidden;
  transition: background 0.2s ease;
}

#serviceDetail .sidebar-services-list li a,
#doctorDetail .sidebar-services-list li a {
  display: block;
  padding: 12px 16px;
  color: rgb(55, 65, 89);
  text-decoration: none;
  font-weight: 600;
  background: rgba(247, 245, 252, 0.95);
}

#serviceDetail .sidebar-services-list li.active a,
#doctorDetail .sidebar-services-list li.active a {
  background: var(--primary);
  color: #fff;
}

#serviceDetail .sidebar-services-list li:hover a,
#doctorDetail .sidebar-services-list li:hover a {
  background: rgba(157, 72, 193, 0.08);
  color: #061f46;
}

#serviceDetail .sidebar-cta p,
#doctorDetail .sidebar-cta p {
  margin: 0 0 18px;
  color: rgb(75, 88, 110);
  line-height: 1.75;
}

#serviceDetail .doctor-detail-main,
#doctorDetail .doctor-detail-main {
  display: grid;
  gap: 32px;
}

#serviceDetail .doctor-detail-section,
#doctorDetail .doctor-detail-section {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(20, 42, 80, 0.06);
}

#serviceDetail .doctor-detail-section h3,
#doctorDetail .doctor-detail-section h3 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 1.4rem;
  color: #061f46;
}

#serviceDetail .doctor-detail-list,
#doctorDetail .doctor-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  color: rgb(75, 88, 110);
  line-height: 1.8;
}

#serviceDetail .doctor-detail-list li,
#doctorDetail .doctor-detail-list li {
  position: relative;
  padding-left: 24px;
}

#serviceDetail .doctor-detail-list li::before,
#doctorDetail .doctor-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

@media (max-width: 1200px) {

  #serviceDetail .doctor-profile-card,
  #serviceDetail .doctor-detail-layout,
  #doctorDetail .doctor-profile-card,
  #doctorDetail .doctor-detail-layout {
    grid-template-columns: 1fr;
  }

  #serviceDetail .doctor-profile-card,
  #doctorDetail .doctor-profile-card {
    padding: 24px;
  }
}

@media (max-width: 992px) {

  #serviceDetail,
  #doctorDetail {
    padding: 40px 16px;
  }

  #serviceDetail .doctor-profile-card,
  #serviceDetail .doctor-detail-layout,
  #doctorDetail .doctor-profile-card,
  #doctorDetail .doctor-detail-layout {
    grid-template-columns: 1fr;
  }

  #serviceDetail .doctor-profile-image,
  #doctorDetail .doctor-profile-image {
    min-height: 320px;
  }
}

@media (max-width: 768px) {

  #serviceDetail .sidebar-card,
  #doctorDetail .sidebar-card {
    padding: 22px;
  }

  #serviceDetail .doctor-profile-card,
  #doctorDetail .doctor-profile-card {
    padding: 22px;
  }

  #serviceDetail .doctor-profile-top,
  #doctorDetail .doctor-profile-top {
    margin-bottom: 28px;
  }

  #serviceDetail .doctor-detail-section,
  #doctorDetail .doctor-detail-section {
    padding: 24px;
  }
}

#aboutSection {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  padding: 80px 20px;
  gap: 40px;
}

#aboutSection .about-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(20, 42, 80, 0.12);
}

#aboutSection .about-image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

#aboutSection .about-image .image-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: auto;
  width: min(100%, 320px);
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 60px rgba(20, 42, 80, 0.18);
  backdrop-filter: blur(12px);
}

#aboutSection .about-image .image-overlay span {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

#aboutSection .about-image .image-overlay h4 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.35;
  color: rgb(6, 31, 70);
  font-weight: 700;
}

#aboutSection .about-content {
  max-width: 620px;
}

#aboutSection .section-label {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

#aboutSection h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

#aboutSection p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgb(3, 11, 25);
  margin-bottom: 1rem;
}

#aboutSection .about-highlights {
  margin: 1.5rem 0;
  padding-left: 1.4rem;
  list-style-type: disc;
  color: rgb(56, 63, 79);
  line-height: 1.8;
}

#aboutSection .info-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

#aboutSection .info-card {
  background: #f8fbff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  transition: 0.3s all;
}

#aboutSection .info-card h5 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: rgb(6, 31, 70);
}

#aboutSection .info-card p {
  margin: 0;
  color: rgb(75, 88, 110);
  line-height: 1.75;
  font-size: 0.96rem;
}

#aboutSection .info-card:hover {
  box-shadow: rgba(180, 42, 162, 0.35) 0px 5px 15px;
}

@media (max-width: 992px) {
  #aboutSection {
    grid-template-columns: 1fr;
    padding: 60px 16px;
  }

  #aboutSection .info-cards {
    grid-template-columns: 1fr;
  }
}

#homeServices {
  padding: 60px 20px;
}

#homeServices .section-header .section-label {
  display: block;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

#homeServices .section-header .section-label:before,
#homeServices .section-header .section-label:after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--primary);
  margin: 0 12px;
}

#homeServices .section-header p {
  margin: 0 auto 2.5rem;
  max-width: 640px;
  color: rgb(56, 63, 79);
  font-size: 0.98rem;
  text-align: center;
  line-height: 1.65;
}

#homeServices .mySwiper {
  padding: 8px 0 24px;
  position: relative;
}

#homeServices .swiper-wrapper {
  align-items: stretch;
}

#homeServices .service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(157, 72, 193, 0.12);
  box-shadow: 0 10px 24px rgba(6, 22, 59, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  min-height: unset;
  padding: 0;
}

#homeServices .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(6, 22, 59, 0.1);
}

#homeServices .service-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

#homeServices .service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.4s ease;
}

#homeServices .service-card:hover .service-image img {
  transform: scale(1.05);
}

#homeServices .service-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

#homeServices .service-content h5 {
  font-size: 1.15rem;
  color: rgb(16, 24, 63);
  margin: 0;
  line-height: 1.25;
}

#homeServices .service-content p {
  margin: 0;
  color: rgb(83, 95, 125);
  line-height: 1.65;
  font-size: 0.94rem;
}

#homeServices .service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(157, 72, 193, 0.08);
  transition: all 0.3s ease;
}

#homeServices .service-link:hover {
  background: var(--primary);
  color: #ffffff;
}

@media (max-width: 1200px) {
  #homeServices .service-card {
    border-radius: 20px;
  }

  #homeServices .service-image {
    min-height: 200px;
  }
}

@media (max-width: 992px) {
  #homeServices {
    padding: 60px 16px;
  }
}

@media (max-width: 768px) {
  #homeServices .service-content {
    padding: 20px;
  }
}

#whyChooseUs {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(157, 72, 193, 0.03) 0%, rgba(157, 72, 193, 0.01) 100%);
  border-radius: 24px;
  margin: 40px auto;
}

#whyChooseUs .section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

#whyChooseUs .section-header .section-label {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

#whyChooseUs .section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #061f46;
}

#whyChooseUs .section-header p {
  font-size: 1.05rem;
  color: rgb(75, 88, 110);
  line-height: 1.7;
  margin: 0;
}

#whyChooseUs .why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

#whyChooseUs .why-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(157, 72, 193, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(157, 72, 193, 0.1);
}

#whyChooseUs .why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(157, 72, 193, 0.15);
  border-color: var(--primary);
}

#whyChooseUs .why-card .card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

#whyChooseUs .why-card .card-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
}

#whyChooseUs .why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #061f46;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

#whyChooseUs .why-card p {
  font-size: 0.95rem;
  color: rgb(75, 88, 110);
  line-height: 1.7;
  margin: 0;
}

#whyChooseUs .why-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}

@media (max-width: 1200px) {
  #whyChooseUs .why-choose-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  #whyChooseUs {
    padding: 60px 16px;
    margin: 30px auto;
  }

  #whyChooseUs .why-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  #whyChooseUs .why-card {
    padding: 24px 16px;
  }

  #whyChooseUs .why-card .card-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  #whyChooseUs .why-card h3 {
    font-size: 1rem;
  }

  #whyChooseUs .why-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  #whyChooseUs .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

#CTAsection {
  background: var(--primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#CTAsection::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

#CTAsection::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

#CTAsection .cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

#CTAsection .cta-content .cta-badge {
  display: inline;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
}

#CTAsection .cta-content h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

#CTAsection .cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
  text-align: center;
}

/* ========== FOOTER STYLES ========== */
#footer {
  background: #f8f9fa;
  padding: 80px 0 0;
}

#footer .footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 50px;
  padding-bottom: 50px;
}

/* Footer Logo & About */
#footer .footer-logo {
  max-height: 80px;
  margin-bottom: 20px;
}

#footer .footer-about p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-links a:hover {
  background: var(--secondary);
  transform: translateY(-5px);
}

/* Footer Headings */
#footer h5 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 12px;
}

#footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 10px;
}

/* Footer Links */
#footer .footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#footer .footer-links li {
  margin-bottom: 14px;
}

#footer .footer-links a {
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: inline-block;
}

#footer .footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

#footer .footer-links .view-all-link a {
  color: var(--primary);
  font-weight: 600;
  margin-top: 5px;
}

/* Footer Contact */
#footer .contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

#footer .contact-item i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

#footer .contact-item div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#footer .contact-item strong {
  color: #1a1a1a;
  font-size: 0.9rem;
  font-weight: 600;
}

#footer .contact-item span,
#footer .contact-item a {
  color: #666;
  line-height: 1.6;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

#footer .contact-item a:hover {
  color: var(--primary);
}

/* Footer Bottom */
#footer .footer-bottom {
  border-top: 1px solid #ddd;
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

#footer .footer-bottom p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

.footer-links-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-links-bottom a {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
  color: var(--primary);
}

.footer-links-bottom span {
  color: #ddd;
}

#footer .footer-bottom a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

#footer .footer-bottom a:hover {
  color: var(--secondary);
}

/* Responsive Design */
@media (max-width: 992px) {
  #footer .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  #footer {
    padding: 60px 0 0;
  }

  #footer .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #footer .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-links-bottom {
    order: -1;
  }
}

@media (max-width: 576px) {
  #footer .footer-logo {
    max-width: 140px;
  }

  .social-links a {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
}

.breadcrumbWrap {
  padding: 80px 20px;
  position: relative;
}

.breadcrumbWrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/herobg.jpg") center/cover no-repeat;
  z-index: -1;
}

.breadcrumbWrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 11, 25, 0.72);
  z-index: -1;
}

.breadcrumbWrap .page-header {
  z-index: 2;
  color: #fff;
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px;
}

.breadcrumbWrap .page-header breadcrumb {
  display: block;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.breadcrumbWrap .page-header breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumbWrap .page-header breadcrumb a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.breadcrumbWrap .page-header .section-label {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 15px;
}

.breadcrumbWrap .page-header p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-map-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f2ff 100%);
}

.contact-map-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-map-section .map-layout {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 32px;
  align-items: center;
}

.contact-map-section .map-panel {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 35px 90px rgba(20, 42, 80, 0.1);
  min-height: 520px;
}

.contact-map-section .map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.contact-map-section .contact-cards {
  display: grid;
  gap: 24px;
}

.contact-map-section .contact-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  background: #ffffff;
  border-radius: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(157, 72, 193, 0.1);
  box-shadow: 0 18px 40px rgba(20, 42, 80, 0.05);
}

.contact-map-section .contact-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
}

.contact-map-section .contact-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: #081737;
}

.contact-map-section .contact-card p {
  margin: 0;
  color: #3b4461;
  line-height: 1.6;
  font-size: 0.95rem;
}

.contact-map-section .contact-card p a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

.contact-map-section .contact-card p a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .contact-map-section .map-layout {
    grid-template-columns: 1fr;
  }

  .contact-map-section .map-panel iframe {
    min-height: 420px;
  }
}

@media (max-width: 768px) {
  .contact-map-section {
    padding: 50px 16px;
  }

  .contact-map-section .contact-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .contact-map-section .contact-card .card-icon {
    width: 60px;
    height: 60px;
  }
}

.contact-form-section {
  padding: 80px 20px 100px;
  background: #f9f6ff;
}

.contact-form-section .form-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-form-section .form-image {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(20, 42, 80, 0.12);
}

.contact-form-section .form-image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.contact-form-section .form-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px;
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(20, 42, 80, 0.06);
}

.contact-form-section .form-badge {
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(157, 72, 193, 0.1);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.contact-form-section .form-content h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: #061f46;
  font-weight: 700;
  line-height: 1.1;
}

.contact-form-section .contact-form {
  display: grid;
  gap: 18px;
}

.contact-form-section .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-section .form-row {
  display: grid;
  gap: 8px;
}

.contact-form-section .form-row.full-width {
  grid-column: 1/-1;
}

.contact-form-section .form-row input,
.contact-form-section .form-row textarea {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid rgba(20, 42, 80, 0.18);
  padding: 12px 0 14px;
  font-size: 0.95rem;
  color: rgb(34, 45, 69);
  background: transparent;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.contact-form-section .form-row input:focus,
.contact-form-section .form-row textarea:focus {
  outline: none;
  border-bottom-color: var(--primary);
}

.contact-form-section .form-row input::-moz-placeholder,
.contact-form-section .form-row textarea::-moz-placeholder {
  color: rgba(75, 88, 110, 0.6);
}

.contact-form-section .form-row input::placeholder,
.contact-form-section .form-row textarea::placeholder {
  color: rgba(75, 88, 110, 0.6);
}

.contact-form-section .form-row textarea {
  resize: vertical;
  border-bottom: 1.5px solid rgba(20, 42, 80, 0.18);
}

.contact-form-section .btn-submit {
  align-self: flex-start;
  padding: 14px 32px !important;
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-form-section .btn-submit i {
  font-size: 1rem;
}

@media (max-width: 992px) {
  .contact-form-section .form-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-section {
    padding: 60px 20px 80px;
  }
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 50px 16px 70px;
  }

  .contact-form-section .form-wrapper {
    gap: 30px;
  }

  .contact-form-section .form-content h2 {
    font-size: 1.8rem;
  }

  .contact-form-section .form-grid {
    grid-template-columns: 1fr;
  }
}

.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  z-index: 9999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: whatsapp-pulse 2s infinite;
  z-index: -1;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.5);
    opacity: 0;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.galleryWrap {
  padding: 80px 20px;
}

.galleryWrap .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.galleryWrap .gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(20, 42, 80, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galleryWrap .gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 90px rgba(20, 42, 80, 0.15);
}

.galleryWrap .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 992px) {
  .galleryWrap .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .galleryWrap {
    padding: 60px 16px;
  }

  .galleryWrap .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

#serviceDetail {
  padding: 60px 20px;
}

#serviceDetail .service-detail-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: start;
}

#serviceDetail .service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 32px;
  align-self: start;
}

#serviceDetail .sidebar-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(20, 42, 80, 0.06);
  border: 1px solid rgba(20, 42, 80, 0.05);
}

#serviceDetail .sidebar-card h3,
#serviceDetail .sidebar-card h4 {
  margin: 0 0 18px;
  color: #061f46;
}

#serviceDetail .sidebar-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

#serviceDetail .sidebar-services-list li {
  border-radius: 14px;
  overflow: hidden;
  transition: background 0.2s ease;
}

#serviceDetail .sidebar-services-list li a {
  display: block;
  padding: 12px 16px;
  color: rgb(55, 65, 89);
  text-decoration: none;
  font-weight: 600;
  background: rgba(247, 245, 252, 0.95);
}

#serviceDetail .sidebar-services-list li.active a {
  background: var(--primary);
  color: #fff;
}

#serviceDetail .sidebar-services-list li:hover a {
  background: rgba(157, 72, 193, 0.08);
  color: #061f46;
}

#serviceDetail .sidebar-cta p {
  margin: 0 0 18px;
  color: rgb(75, 88, 110);
  line-height: 1.75;
}

#serviceDetail .service-detail-main {
  display: grid;
  gap: 32px;
}

#serviceDetail .service-detail-image {
  min-height: 420px;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(20, 42, 80, 0.08);
}

#serviceDetail .service-detail-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#serviceDetail .service-detail-content h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0;
  color: #061f46;
}

#serviceDetail .service-detail-content .lead {
  font-size: 1.05rem;
  color: rgb(37, 46, 74);
  line-height: 1.85;
  margin: 0;
}

#serviceDetail .service-detail-content p {
  color: rgb(75, 88, 110);
  line-height: 1.8;
  margin: 0;
}

#serviceDetail .service-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

#serviceDetail .service-detail-extra {
  margin-top: 0;
  display: grid;
  gap: 36px;
}

#serviceDetail .service-detail-section {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(20, 42, 80, 0.06);
}

#serviceDetail .service-detail-section h3 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 1.4rem;
  color: #061f46;
}

#serviceDetail .service-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  color: rgb(75, 88, 110);
  line-height: 1.8;
}

#serviceDetail .service-detail-list li {
  position: relative;
  padding-left: 24px;
}

#serviceDetail .service-detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

#serviceDetail .service-detail-list.numbered {
  counter-reset: service-step;
}

#serviceDetail .service-detail-list.numbered li {
  padding-left: 32px;
}

#serviceDetail .service-detail-list.numbered li::before {
  content: counter(service-step);
  counter-increment: service-step;
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

#serviceDetail .faq-item {
  margin-bottom: 18px;
  border-radius: 16px;
  background: #f8f7ff;
  overflow: hidden;
  border: 1px solid rgba(157, 72, 193, 0.12);
}

#serviceDetail .faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 700;
  color: #061f46;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#serviceDetail .faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: rgb(75, 88, 110);
  line-height: 1.8;
}

@media (max-width: 1200px) {
  #serviceDetail .service-detail-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  #serviceDetail {
    padding: 40px 16px;
  }

  #serviceDetail .service-detail-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  #serviceDetail .sidebar-card {
    padding: 22px;
  }

  #serviceDetail .service-detail-image {
    min-height: 300px;
  }

  #serviceDetail .service-detail-section {
    padding: 24px;
  }
}