*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: #1a1a2e;
  background: #fff;
  overflow-x: hidden
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

button,
input,
textarea,
select {
  font: inherit;
  border: none;
  outline: none
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px
}

:root {
  --primary: #0a4d68;
  --primary-dark: #083d54;
  --accent: #e85d04;
  --accent-hover: #d00000;
  --bg-light: #f0f7fa;
  --text: #1a1a2e;
  --text-muted: #4a5568;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(10, 77, 104, 0.08);
  --radius: 12px;
  --transition: 0.3s ease;
}

.top-bar {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.85rem;
  padding: 8px 0;
  position: relative;
  z-index: 1001;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.top-bar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.92);
  transition: var(--transition);
}

.top-bar a:hover {
  color: #ffd166
}

.top-bar svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}

.top-bar .divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.25);
}

.top-bar .badge {
  background: var(--accent);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
}

.logo svg {
  width: 36px;
  height: 36px
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 8px 15px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%
}

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.nav-cta::after {
  display: none !important
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
}

.hero {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #0a4d68 0%, #0d6e8a 50%, #0a4d68 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.2;
  margin-bottom: 18px;
  /*font-weight: 800;*/
}

.hero h1 span {
  color: #ffd166
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.92;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #c44d00;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 93, 4, 0.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat {
  text-align: center
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffd166;
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.85;
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
}

.hero-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.hero-card p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 14px
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: #1a1a2e;
  font-size: 0.95rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #718096
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

section {
  padding: 50px 0
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
}

.section-title h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 800;
}

.section-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-title .line {
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 16px auto 0;
  border-radius: 2px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img {
  background: var(--bg-light);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  position: relative;
}

.about-img .icon-circle {
  width: 120px;
  height: 120px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.about-img .icon-circle svg {
  width: 60px;
  height: 60px;
  fill: #fff;
}

.about-content h3 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-list {
  margin: 24px 0
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
}

.about-list li svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: var(--accent);
}

.treatments {
  background: var(--bg-light)
}

.treat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.treat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}

.treat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(10, 77, 104, 0.12);
  border-color: rgba(10, 77, 104, 0.15);
}

.treat-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), #0d6e8a);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.treat-icon svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.treat-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.treat-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.treat-card a {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.treat-card a:hover {
  gap: 10px
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.why-card .num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.why-card h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.testimonials {
  background: var(--primary);
  color: #fff;
}

.testimonials .section-title h2 {
  color: #fff;
}

.testimonials .section-title p {
  color: rgba(255, 255, 255, 0.85);
}

.testimonials .line {
  background: #ffd166;
}

.test-slider-container {
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
}

.test-grid {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 24px;
}

.test-card {
  min-calc: calc(33.333% - 16px);
  flex: 0 0 calc(33.333% - 16px);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 28px;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .test-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 600px) {
  .test-card {
    flex: 0 0 100%;
  }
}

.test-card .stars {
  color: #ffd166;
  margin-bottom: 14px;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.test-card p {
  font-style: italic;
  margin-bottom: 18px;
  opacity: 0.95;
  font-size: 0.98rem;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-avatar {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.test-author strong {
  display: block;
  font-size: 0.95rem;
}

.test-author span {
  font-size: 0.8rem;
  opacity: 0.8;
}

.test-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.test-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.test-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.test-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #ffd166;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-q {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.05rem;
  transition: var(--transition);
}

.faq-q:hover {
  background: var(--bg-light)
}

.faq-q svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-q svg {
  transform: rotate(180deg)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
}

.faq-a-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.faq-item.active .faq-a {
  max-height: 300px
}

.contact {
  background: var(--bg-light)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.contact-item .icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item .icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.contact-item strong {
  display: block;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-item a:hover {
  color: var(--accent)
}

.contact-form {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  transition: var(--transition);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--primary);
  background: #fff;
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.footer {
  /* background: #062f40; */
  background: #083e53;
  /* background: linear-gradient(135deg, #083e53 0%, #0d5468 50%, #073446 100%); */
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.footer p {
  font-size: 0.92rem;
  margin-bottom: 12px;
  line-height: 1.7;
}

.footer-links li {
  margin-bottom: 10px
}

.footer-links a {
  font-size: 0.92rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #ffd166;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: #ffd166
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.socials a:hover {
  background: var(--accent)
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.float-cta {
  position: fixed;
  bottom: 45px;
  left: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  cursor: pointer;
}

.float-btn:hover {
  transform: scale(1.08)
}

.float-call {
  background: #0A4D68
}

.float-whatsapp {
  background: #25d366
}

.float-btn svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

@media(max-width:992px) {

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .hero-card {
    max-width: 420px;
    margin: 0 auto
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:768px) {
  .top-bar {
    font-size: 0.8rem;
    padding: 7px 0;
    display: none;
  }

  .top-bar-inner {
    justify-content: center;
    text-align: center
  }

  .top-bar-left,
  .top-bar-right {
    justify-content: center;
    gap: 14px
  }

  .top-bar .divider {
    display: none
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 90px 20px 40px;
    gap: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    opacity: 0;
    transition: 0.35s;
    pointer-events: none;
    z-index: 999;
  }

  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
  }

  .hamburger {
    display: flex;
    z-index: 1001
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px)
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px)
  }

  .hero {
    padding: 70px 0 60px
  }

  .hero-stats {
    justify-content: center
  }

  .footer-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:480px) {
  .top-bar-left span:not(.badge) {
    display: none
  }

  .hero-btns {
    flex-direction: column
  }

  .btn {
    width: 100%;
    justify-content: center
  }

  .stat-num {
    font-size: 1.5rem
  }

  .float-cta {
    bottom: 16px;
    right: 16px
  }

  .float-btn {
    width: 50px;
    height: 50px
  }
}

.awards-section {
  background: #fff;
  padding: 50px;
}

.awards-section .awards-head {
  text-align: center;
  margin-bottom: 56px;
}

.awards-section .awards-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 10px;
}

.awards-section .awards-head p {
  color: #5a6a7a;
  font-size: 1.1rem;
}

.awards-section .awards-head .line {
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 18px auto 0;
  border-radius: 4px;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 auto;
  padding: 0 10px;
}

.awards-section .award-card {
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.awards-section .award-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 55px rgba(10, 77, 104, 0.18);
}

.award-frame {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #eef3f7;
}

.awards-section .award-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: #fff;
  padding: 8px;
}

@media(max-width:992px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 700px
  }
}

@media(max-width:600px) {
  .awards-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    gap: 24px
  }

  .awards-section {
    padding: 65px 0 70px
  }
}

.page-hero {
  padding: 70px 0 50px;
  background: linear-gradient(135deg, #0a4d68 0%, #0d6e8a 50%, #0a4d68 100%);
  color: #fff;
  text-align: center
}

.page-hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.25
}

.page-hero p {
  opacity: 0.92;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.08rem
}

.about-intro {
  background: #fff;
  padding: 80px 0
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start
}

.about-card {
  background: var(--bg-light);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow)
}

.about-card .icon-circle {
  width: 110px;
  height: 110px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px
}

.about-card .icon-circle svg {
  width: 54px;
  height: 54px;
  fill: #fff
}

.about-card h3 {
  color: var(--primary);
  font-size: 1.45rem;
  margin-bottom: 6px
}

.about-card .deg {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 10px
}

.about-card .exp {
  color: var(--accent);
  font-weight: 700
}

.about-card .role {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.92rem
}

.about-text h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 14px
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 1.02rem
}

.bg-soft {
  background: var(--bg-light)
}

.content-block p {
  margin-bottom: 14px;
  font-size: 1.02rem
}

.center-note {
  text-align: center;
  color: var(--text-muted);
  margin-top: 28px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto
}

.note {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.92rem
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px
}

.info-box {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow);
  height: 100%
}

.info-box h4 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px
}

.info-box h4 span {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0
}

.qual-item {
  padding: 14px 0;
  border-bottom: 1px solid #e8eef2
}

.qual-item:last-child {
  border-bottom: none
}

.qual-item strong {
  display: block;
  color: var(--primary);
  margin-bottom: 4px
}

.qual-item span {
  color: var(--text-muted);
  font-size: 0.92rem
}

.hosp-list li {
  padding: 10px 0;
  border-bottom: 1px solid #e8eef2;
  color: var(--text-muted)
}

.hosp-list li:last-child {
  border-bottom: none
}

.hosp-list li strong {
  color: var(--primary)
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px
}

.spec-item {
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500
}

.spec-item .dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 28px
}

.phil-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px dolid;
}

.phil-card .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px
}

.phil-card h4 {
  color: var(--primary);
  font-size: 1.02rem;
  margin-bottom: 6px
}

.phil-card p {
  color: var(--text-muted);
  font-size: 0.88rem
}

.achieve-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  align-items: flex-start
}

.achieve-list li .badge-num {
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0
}

.achieve-list li p {
  color: var(--text-muted);
  padding-top: 4px
}

.why-item {
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px
}

.cta-box {
  background: linear-gradient(135deg, #0a4d68, #0d6e8a);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  color: #fff;
  margin-top: 28px
}

.cta-box h3 {
  font-size: 1.6rem;
  margin-bottom: 12px
}

.cta-box p {
  opacity: 0.92;
  max-width: 560px;
  margin: 0 auto 24px
}

@media(max-width:992px) {

  .about-intro-grid,
  .two-col {
    grid-template-columns: 1fr
  }
}

.bg-white {
  background: #fff;
}

.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.contact-info h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-item .icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item .icon svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.contact-item strong {
  display: block;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-item a:hover {
  color: var(--accent);
}

.contact-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  background: linear-gradient(135deg, var(--accent), #c44d00);
  color: #fff;
  box-shadow: 0 4px 18px rgba(232, 93, 4, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 93, 4, 0.5);
}

.map-container {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  border: 1px solid #e2e8f0;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: 0;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 40px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }

  .contact-form {
    padding: 20px;
  }

  .map-container iframe {
    height: 300px;
  }
}


/* ===== LOCATION / SEXOLOGIST DELHI PAGE ===== */
.page-hero {
  padding: 70px 0 50px;
  background: linear-gradient(135deg, #0a4d68 0%, #0d6e8a 50%, #0a4d68 100%);
  color: #fff;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.25;
}

.page-hero p {
  opacity: 0.92;
  max-width: 680px;
  margin: 0 auto 22px;
  font-size: 1.05rem;
}

.hero-checks {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-checks span {
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: 0.3s ease;
}

.btn-primary {
  background: #e85d04;
  color: #fff
}

.btn-primary:hover {
  background: #c44d00;
  transform: translateY(-2px)
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15)
}

.bg-soft {
  background: #f0f7fa
}

.section-title {
  text-align: center;
  margin-bottom: 44px
}

.section-title h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  color: #0a4d68;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-title p {
  color: #4a5568;
  max-width: 640px;
  margin: 0 auto
}

.section-title .line {
  width: 56px;
  height: 4px;
  background: #e85d04;
  margin: 14px auto 0;
  border-radius: 2px;
}

.text-block {
  max-width: 860px;
  margin: 0 auto
}

.text-block p {
  color: #4a5568;
  margin-bottom: 14px;
  font-size: 1.02rem
}

.bio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bio-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 4px 20px rgba(10, 77, 104, 0.08);
  text-align: center;
}

.bio-card strong {
  display: block;
  color: #0a4d68;
  font-size: 1.05rem;
  margin-bottom: 6px
}

.bio-card span {
  color: #4a5568;
  font-size: 0.9rem
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px
}

.info-box {
  background: #fff;
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 4px 20px rgba(10, 77, 104, 0.08);
}

.info-box h3 {
  color: #0a4d68;
  font-size: 1.2rem;
  margin-bottom: 16px
}

.info-box li {
  padding: 8px 0;
  border-bottom: 1px solid #eef2f5;
  color: #4a5568;
  font-size: 0.95rem;
}

.info-box li:last-child {
  border-bottom: none
}

.info-box li strong {
  color: #0a4d68
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.spec-item {
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 4px 20px rgba(10, 77, 104, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.95rem;
}

.spec-item .dot {
  width: 9px;
  height: 9px;
  background: #e85d04;
  border-radius: 50%;
  flex-shrink: 0;
}

.detail-list {
  max-width: 860px;
  margin: 0 auto
}

.detail-item {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(10, 77, 104, 0.08);
  margin-bottom: 16px;
}

.detail-item h3 {
  color: #0a4d68;
  font-size: 1.15rem;
  margin-bottom: 10px
}

.detail-item p {
  color: #4a5568;
  font-size: 0.98rem
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.impact-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(10, 77, 104, 0.08);
}

.impact-card h4 {
  color: #0a4d68;
  margin-bottom: 10px
}

.impact-card p {
  color: #4a5568;
  font-size: 0.95rem
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.why-item {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 4px 20px rgba(10, 77, 104, 0.08);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.why-item .num {
  width: 32px;
  height: 32px;
  background: #0a4d68;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.why-item p {
  color: #4a5568;
  font-size: 0.95rem
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.area-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 4px 20px rgba(10, 77, 104, 0.08);
}

.area-card h4 {
  color: #0a4d68;
  margin-bottom: 12px;
  font-size: 1.1rem
}

.area-card li {
  color: #4a5568;
  font-size: 0.92rem;
  padding: 4px 0;
  list-style: none
}

.faq-list {
  max-width: 800px;
  margin: 0 auto
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 4px 20px rgba(10, 77, 104, 0.08);
  overflow: hidden;
}

.faq-q {
  padding: 16px 22px;
  cursor: pointer;
  font-weight: 600;
  color: #0a4d68;
  font-size: 1.02rem;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s
}

.faq-a-inner {
  padding: 0 22px 18px;
  color: #4a5568;
  font-size: 0.95rem
}

.faq-item.active .faq-a {
  max-height: 220px
}

.cta-box {
  background: linear-gradient(135deg, #0a4d68, #0d6e8a);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  color: #fff;
}

.cta-box h3 {
  font-size: 1.55rem;
  margin-bottom: 12px
}

.cta-box p {
  opacity: 0.92;
  max-width: 560px;
  margin: 0 auto 24px
}

@media(max-width:992px) {

  .two-col,
  .bio-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:768px) {
  section {
    padding: 55px 0
  }

  .hero-checks {
    gap: 10px
  }

  .hero-checks span {
    font-size: 0.82rem;
    padding: 6px 12px
  }
}

.hero-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.hero-btns .btn {
  flex: 1;
  max-width: 300px;
  text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn {
    width: 100%;
    max-width: none;
  }
}

.doctor-profile-master-container {
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.dpm-band {
  width: 100%;
}

.dpm-white-band {
  background: #fff;
}

.dpm-gray-band {
  background: #f1f1f1;
}

.dpm-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 25px;
  padding-right: 25px;
}

/* Hero Profile */
.dpm-hero-band {
  border-bottom: 1px solid #edf1f4;
}

.dpm-hero {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 45px;
  align-items: center;
}

.dpm-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 50px;
  background: #e4f3f7;
  color: #087ea4;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.dpm-hero h2 {
  margin: 0 0 16px;
  color: #173f67;
  /* font-size: clamp(36px, 5vw, 54px); */
  font-size: 30px ;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1.2px;
}

.dpm-lead-text {
  max-width: 720px;
  margin: 0;
  color: #526276;
  font-size: 17px;
  line-height: 1.8;
}

.dpm-quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.dpm-stat {
  min-width: 125px;
  padding: 13px 17px;
  background: #fff;
  border: 1px solid #dce7ef;
  border-radius: 12px;
  transition: 0.25s ease;
}

.dpm-stat:hover {
  border-color: #b8dce7;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(8, 126, 164, 0.08);
}

.dpm-stat-number {
  display: block;
  color: #173f67;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.dpm-stat-label {
  display: block;
  margin-top: 3px;
  color: #66758a;
  font-size: 12px;
  font-weight: 600;
}

.dpm-image-col {
  display: flex;
  justify-content: center;
}

.dpm-image-frame {
  position: relative;
  width: min(100%, 350px);
  height: 390px;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(145deg, #173f67, #087ea4);
  border: 7px solid #fff;
  box-shadow: 0 18px 35px rgba(22, 63, 103, 0.20);
}

.dpm-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dpm-image-fallback {
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.dpm-image-fallback small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.8;
}

/* About Section */
.dpm-about-band {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.dpm-about-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.dpm-about-col {
  width: 33.333%;
  flex: 0 0 33.333%;
  padding: 0 10px;
}

.dpm-info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 350px;
  padding: 25px;
  background: #fff;
  border: 1px solid #e0e6eb;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(20, 48, 75, 0.055);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dpm-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #087ea4, #16a085);
}

.dpm-info-card:hover {
  transform: translateY(-5px);
  border-color: #c8dce8;
  box-shadow: 0 15px 35px rgba(20, 48, 75, 0.11);
}

.dpm-card-top {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 22px;
  padding-bottom: 17px;
  border-bottom: 1px solid #e8edf2;
}

.dpm-section-number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 43px;
  width: 43px;
  height: 43px;
  background: #eaf5fa;
  color: #087ea4;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
}

.dpm-mini-title {
  display: block;
  margin-bottom: 3px;
  color: #087ea4;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.dpm-card-top b {
  margin: 0;
  color: #173f67;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
}

.dpm-card-content {
  flex: 1;
}

.dpm-detail-item {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #edf1f4;
}

.dpm-detail-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.dpm-detail-title {
  display: block;
  margin-bottom: 4px;
  color: #173f67;
  font-size: 13px;
  font-weight: 800;
}

.dpm-detail-item p {
  margin: 0;
  color: #66758a;
  font-size: 13px;
  line-height: 1.55;
}

.dpm-qualification-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
}

.dpm-qualification-item:last-child {
  margin-bottom: 0;
}

.dpm-check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  margin-top: 1px;
  border-radius: 50%;
  background: #e8f7f1;
  color: #159b7c;
  font-size: 11px;
  font-weight: 900;
}

.dpm-qualification-item p {
  margin: 0;
  color: #66758a;
  font-size: 13px;
  line-height: 1.6;
}

.dpm-qualification-item strong {
  color: #243f5b;
}

.dpm-experience-card::before {
  background: linear-gradient(90deg, #7257c7, #087ea4);
}

.dpm-experience-list {
  position: relative;
  margin: 0;
  padding: 0 0 0 23px;
}

.dpm-experience-list::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  bottom: 7px;
  width: 2px;
  background: #d7e5ec;
}

.dpm-experience-list li {
  position: relative;
  margin-bottom: 18px;
  color: #66758a;
  font-size: 13px;
  line-height: 1.55;
}

.dpm-experience-list li:last-child {
  margin-bottom: 0;
}

.dpm-timeline-dot {
  position: absolute;
  left: -23px;
  top: 3px;
  width: 12px;
  height: 12px;
  border: 3px solid #e7f4f8;
  border-radius: 50%;
  background: #087ea4;
}

/* Vision */
.dpm-vision-card {
  position: relative;
  display: flex;
  gap: 20px;
  /* margin: 60px 0; */
  padding: 30px 32px;
  overflow: hidden;
  color: #075e52;
  background: linear-gradient(135deg, #effcf8, #e2f8f0);
  border: 1px solid #ccefe2;
  border-left: 5px solid #16a085;
  border-radius: 0 18px 18px 0;
}

.dpm-vision-card p {
  margin: 8px 0 0;
  color: #386b63;
  font-size: 15px;
  line-height: 1.8;
}

.dpm-quote-icon {
  flex: 0 0 45px;
  color: #70cdb5;
  font-family: Georgia, serif;
  font-size: 65px;
  line-height: 0.7;
}


.dpm-section-heading {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 25px;
}

.dpm-section-heading h2 {
  margin: 0;
  color: #173f67;
  font-size: 27px;
  line-height: 1.3;
  font-weight: 800;
}

.dpm-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.dpm-service-box {
  height: 100%;
  padding: 10px;
  background: #fff;
  border: 1px solid #e0e6eb;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(20, 48, 75, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dpm-service-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(20, 48, 75, 0.09);
}

.dpm-card-title {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
  padding-bottom: 17px;
  border-bottom: 1px solid #e1e7eb;
}

.dpm-card-title h3 {
  margin: 0;
  color: #173f67;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 800;
}

.dpm-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  font-size: 20px;
  font-weight: 900;
}

.purple-icon {
  color: #674bb7;
  background: #f0edff;
}

.blue-icon {
  color: #087ea4;
  background: #e8f7fb;
}

.dpm-checks {
  margin: 0;
  padding: 0;
}

.dpm-three-column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dpm-checks li {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 10px 10px 11px 20px;
    background: #f8fafc;
    border: 1px solid #e7edf2;
    border-radius: 10px;
    color: #3c3c3c;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    transition: all 0.2s ease;
}

/* .dpm-checks li::before {
  content: "✓";
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e5f5f0;
  color: #159b7c;
  font-size: 10px;
  font-weight: 900;
} */

.dpm-checks li:hover {
  transform: translateY(-2px);
  border-color: #b8dce7;
  background: #f5fbfd;
  box-shadow: 0 5px 14px rgba(8, 126, 164, 0.08);
}

/* =========================================================
       SEXUAL HEALTH SECTIONS
       ========================================================= */
/* .sexual-section {
  padding: 50px 0;
} */

.sexual-section.white {
  background: #fff;
}

.sexual-section.gray {
  background: #f1f1f1;
}


.sexual-section b {
  font-size: 20px;
  line-height:1.35;
  color: #18212b;
  /* margin: 0 0 15px; */
}

.sexual-section p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin: 0 0 20px;
}

.concerns-intro {
  max-width: 900px;
  margin-bottom: 40px;
}

.concerns-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.concern-card {
  background: #fff;
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.concern-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.concern-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.concern-number {
  width: 35px;
  height: 35px;
  min-width: 35px;
  border-radius: 50%;
  background: #18212b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.concern-heading h3 {
  margin: 0;
}

.life-intro {
  max-width: 950px;
  margin-bottom: 35px;
}

.life-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.life-card {
  background: #fff;
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.life-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.life-card h3 {
  margin-bottom: 12px;
}

/* =========================================================
       CLINIC SECTION
       ========================================================= */
.clinic-section {
  width: 100%;
  background: #f1f1f1;
}

.clinic-container {
  max-width: 1150px;
  margin: 0 auto;
}

.clinic-section h2 {
  color: #18212b;
  text-align: center;
  margin: 0 0 20px;
}

.clinic-intro {
  max-width: 850px;
  margin: 0 auto 40px;
  text-align: center;
}

.clinic-intro p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin: 0;
}

.clinic-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.clinic-benefit {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 28px 30px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.3s ease;
}

.clinic-benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.clinic-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: #18212b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.clinic-benefit p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.clinic-benefit:last-child {
  grid-column: 1 / -1;
}

/* =========================================================
       CTA SECTION
       ========================================================= */
.sexual-specialist-cta {
  width: 100%;
  padding: 65px 20px;
  background: #0f627b;
}

.sexual-specialist-container {
  max-width: 1150px;
  margin: 0 auto;
}

.sexual-specialist-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.sexual-specialist-content {
  max-width: 780px;
}

.sexual-specialist-content h2 {
  margin: 0 0 15px;
  color: #fff;
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
}

.sexual-specialist-content p {
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.8;
}

.sexual-specialist-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 15px 28px;
  background: #f56800;
  color: #fff !important;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.sexual-specialist-btn:hover {
  background: #e85d00;
  transform: translateY(-2px);
}

/* =========================================================
       FAQ
       ========================================================= */
/* .rts-faq-area {
  padding: 80px 20px;
  background: #f1f1f1;
} */

.rts-faq-area .title-six-center {
  text-align: center;
  margin-bottom: 45px;
}

/* .rts-faq-area .title {
  font-size: 38px;
  line-height: 1.3;
  color: #18212b;
  margin: 0;
} */

.rts-faq-area .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.rts-faq-area .col-lg-6 {
  width: 50%;
  padding: 0 12px;
}

.rts-faq-area .accordion {
  width: 100%;
}

.rts-faq-area .accordion-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.rts-faq-area .accordion-item:hover {
  border-color: #bbb;
}

.rts-faq-area .accordion-header {
  margin: 0;
}

.rts-faq-area .accordion-button {
  width: 100%;
  border: 0;
  outline: none;
  background: #fff;
  color: #18212b;
  padding: 21px 50px 21px 22px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  font-family: inherit;
}

.rts-faq-area .accordion-button::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px;
  font-weight: 400;
  color: #18212b;
}

.rts-faq-area .accordion-button[aria-expanded="true"] {
  background: #18212b;
  color: #fff;
}

.rts-faq-area .accordion-button[aria-expanded="true"]::after {
  content: "−";
  color: #fff;
}

.rts-faq-area .accordion-body {
  display: none;
  padding: 22px;
  background: #fff;
}

.rts-faq-area .accordion-body.active {
  display: block;
}

.rts-faq-area .accordion-body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.rts-faq-area .accordion-body p b {
  color: #18212b;
}

.rts-faq-area .accordion-body a {
  color: #087ea4;
  text-decoration: underline;
}

/* =========================================================
   HERO
========================================================= */

.pkg-wrap {
    width: 92%;
    max-width: 1180px;
    margin: 0 auto;
}
.pkg-hero {
    background:
        linear-gradient(135deg, #edfafa 0%, #f8ffff 55%, #eef8f7 100%);
    padding: 50px 0;
    overflow: hidden;
}

.pkg-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 55px;
    align-items: center;
}

.pkg-breadcrumb {
    font-size: 13px;
    color: #6b7c85;
    margin-bottom: 18px;
}

.pkg-breadcrumb span {
    color: #0C5C78;
}

.pkg-hero h1 {
    font-size: clamp(38px, 5vw, 35px);
    line-height: 1.12;
    color: #173b4d;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.pkg-hero h1 span {
    color: #0C5C78;
}

.pkg-hero-text {
    font-size: 18px;
    color: #53666f;
    max-width: 680px;
    margin-bottom: 28px;
}

.pkg-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.pkg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 25px;
    border-radius: 7px;
    font-weight: 700;
    transition: .25s ease;
    text-decoration: none;
}

.pkg-btn-primary {
    background: #0C5C78;
    color: #fff;
}

.pkg-btn-primary:hover {
    background: #084f4d;
    transform: translateY(-2px);
}

.pkg-btn-outline {
    border: 1px solid #0C5C78;
    color: #0C5C78;
    background: #fff;
}

.pkg-btn-outline:hover {
    background: #0C5C78;
    color: #fff;
}

.pkg-hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pkg-hero-point {
    background: #fff;
    border: 1px solid #dceceb;
    border-radius: 30px;
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 600;
    color: #40555d;
}

.pkg-doctor-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px;
    box-shadow: 0 18px 50px rgba(16, 65, 70, .12);
    border: 1px solid #e1eeee;
}

.pkg-doctor-photo img {
    height: 400px;
    width: 100%;
    border-radius: 13px;
    background: linear-gradient(135deg, #d7eeee, #eef8f7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #568080;
    font-weight: 700;
    margin-bottom: 20px;
}

.pkg-doctor-card h3 {
    color: #173b4d;
    font-size: 23px;
    margin-bottom: 5px;
}

.pkg-doctor-role {
    color: #0C5C78;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 7px;
}

.pkg-doctor-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.pkg-doctor-meta div {
    background: #f4f9f9;
    border-radius: 8px;
    padding: 12px;
    font-size: 13px;
}

.pkg-doctor-meta strong {
    display: block;
    color: #173b4d;
    font-size: 17px;
}
@media (max-width: 767px) {
    .pkg-doctor-meta div {
        margin-top: 150px;
    }
}

/* =========================================================
   TRUST STRIP
========================================================= */

.pkg-trust-strip {
    background: #fff;
    border-bottom: 1px solid #edf2f2;
}

.pkg-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.pkg-trust-item {
    text-align: center;
    padding: 24px 15px;
    border-right: 1px solid #edf2f2;
}

.pkg-trust-item:last-child {
    border-right: 0;
}

.pkg-trust-item strong {
    display: block;
    color: #0C5C78;
    font-size: 23px;
}

.pkg-trust-item span {
    font-size: 13px;
    color: #66777e;
}


/* =========================================================
   COMMON SECTION HEADING
========================================================= */

.pkg-eyebrow {
    color: #0C5C78;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.pkg-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px;
}

/* .pkg-section-head h2 {
    font-size: clamp(30px, 4vw, 42px);
    color: #173b4d;
    line-height: 1.2;
    margin-bottom: 13px;
} */

.pkg-section-head p {
    color: #687a81;
    font-size: 16px;
}


/* =========================================================
   INTRO
========================================================= */

.pkg-intro {
    background: #fff;
    padding: 50px 0;
}

.pkg-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

/* .pkg-intro-content h2 {
    font-size: 38px;
    color: #173b4d;
    line-height: 1.25;
    margin-bottom: 20px;
} */

.pkg-intro-content p {
    color: #62737a;
    margin-bottom: 16px;
}

.pkg-info-box {
    background: #f1f9f8;
    border-left: 4px solid #0C5C78;
    padding: 25px;
    border-radius: 8px;
}

.pkg-info-box strong {
    display: block;
    color: #173b4d;
    font-size: 18px;
    margin-bottom: 8px;
}


/* =========================================================
   TREATMENTS
========================================================= */

.pkg-treatments {
    background: #f6faf9;
    padding: 50px 0;
}

.pkg-treatment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pkg-treatment-card {
    background: #fff;
    padding: 27px;
    border: 1px solid #e2eded;
    border-radius: 12px;
    transition: .25s ease;
}

.pkg-treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(20, 70, 70, .09);
    border-color: #b9d9d7;
}

.pkg-treatment-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #e4f4f2;
    color: #0C5C78;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 17px;
}

.pkg-treatment-card h3 {
    color: #173b4d;
    font-size: 20px;
    margin-bottom: 9px;
}

.pkg-treatment-card p {
    color: #697a80;
    font-size: 14px;
}


/* =========================================================
   WHY US
========================================================= */

.pkg-why {
    background: #fff;
    padding: 50px 0;
}

.pkg-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.pkg-why-card {
    padding: 28px;
    border: 1px solid #e3ebeb;
    border-radius: 12px;
    background: #fff;
}

.pkg-why-number {
    color: #0C5C78;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 8px;
}

.pkg-why-card h3 {
    font-size: 21px;
    color: #173b4d;
    margin-bottom: 8px;
}

.pkg-why-card p {
    font-size: 14px;
    color: #68787e;
}


/* =========================================================
   DOCTOR SECTION
========================================================= */

.pkg-doctor-section {
    background: #f6faf9;
    padding: 50px 0;
}

.pkg-doctor-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 55px;
    align-items: center;
}

.pkg-doctor-large img {
    min-height: 430px;
    background: linear-gradient(135deg, #dcefee, #f5fbfa);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #568080;
    font-weight: 700;
}

/* .pkg-doctor-content h2 {
    font-size: 40px;
    line-height: 1.2;
    color: #173b4d;
    margin-bottom: 18px;
} */

.pkg-doctor-content p {
    color: #66777e;
    margin-bottom: 17px;
}

.pkg-doctor-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0;
}

.pkg-doctor-check {
    background: #fff;
    border-radius: 8px;
    padding: 13px;
    font-size: 13px;
    font-weight: 600;
    color: #40545c;
}

.pkg-doctor-check::before {
    content: "✓";
    color: #0C5C78;
    font-weight: 900;
    margin-right: 8px;
}


/* =========================================================
   CTA
========================================================= */

.pkg-cta {
    background: #0C5C78;
    color: #fff;
    padding: 50px 0;
}

.pkg-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
}

.pkg-cta h2 {
    font-size: clamp(29px, 4vw, 42px);
    line-height: 1.2;
    margin-bottom: 10px;
}

.pkg-cta p {
    color: #d8eeee;
    max-width: 680px;
}

.pkg-cta .pkg-btn {
    background: #fff;
    color: #0C5C78;
    white-space: nowrap;
}


/* =========================================================
   SPECIALIZED
========================================================= */

.pkg-specialized {
    background: #fff;
    padding: 50px 0;
}

.pkg-specialized-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.pkg-specialized-card {
    padding: 25px;
    border: 1px solid #e1ebeb;
    border-radius: 10px;
    background: #fff;
}

.pkg-specialized-card h3 {
    color: #173b4d;
    font-size: 18px;
    margin-bottom: 7px;
}

.pkg-specialized-card p {
    color: #6a7b81;
    font-size: 14px;
}


/* =========================================================
   CONFIDENCE
========================================================= */

.pkg-confidence {
    background: #f6faf9;
    padding: 50px 0;
}

.pkg-confidence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.pkg-confidence-card {
    background: #fff;
    padding: 26px;
    border-radius: 11px;
    border: 1px solid #e2ebeb;
}

.pkg-confidence-card h3 {
    color: #173b4d;
    font-size: 19px;
    margin-bottom: 8px;
}

.pkg-confidence-card p {
    color: #6a7b82;
    font-size: 14px;
}


/* =========================================================
   CONSULTATION
========================================================= */

.pkg-consultation {
    background: #fff;
    padding: 50px 0;
}

.pkg-consult-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pkg-consult-card {
    text-align: center;
    padding: 32px 24px;
    border: 1px solid #dfebeb;
    border-radius: 12px;
}

.pkg-consult-icon {
    font-size: 30px;
    margin-bottom: 13px;
}

.pkg-consult-card h3 {
    color: #173b4d;
    margin-bottom: 8px;
}

.pkg-consult-card p {
    color: #6b7b81;
    font-size: 14px;
}


/* =========================================================
   REVIEWS
========================================================= */

.pkg-reviews {
    background: #f6faf9;
    padding: 50px 0;
}

.pkg-review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.pkg-review-card {
    background: #fff;
    padding: 25px;
    border-radius: 11px;
    border: 1px solid #e1eaea;
}

.pkg-stars {
    color: #e3a92d;
    letter-spacing: 2px;
    margin-bottom: 13px;
}

.pkg-review-card p {
    color: #617279;
    font-size: 14px;
    margin-bottom: 18px;
}

.pkg-review-author {
    font-weight: 700;
    color: #173b4d;
    font-size: 14px;
}

.pkg-review-date {
    color: #8a989d;
    font-size: 12px;
}


/* =========================================================
   LOCATION
========================================================= */

.pkg-location {
    background: #fff;
    padding: 50px 0;
}

.pkg-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}

  /* .pkg-location-content h2 {
      color: #173b4d;
      font-size: 36px;
      margin-bottom: 15px;
  } */

.pkg-location-content p {
    color: #697a81;
    margin-bottom: 20px;
}

.pkg-location-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.pkg-location-list div {
    background: #f3f8f8;
    padding: 12px 15px;
    border-radius: 7px;
    color: #40545b;
    font-size: 14px;
    font-weight: 600;
}

.pkg-location-map {
    min-height: 350px;
    background: #edf5f4;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b8282;
    font-weight: 700;
}


/* =========================================================
   FAQ
========================================================= */

.pkg-faq {
    background: #f6faf9;
    padding: 50px 0;
}

.pkg-faq-list {
    max-width: 900px;
    margin: auto;
}

.pkg-faq-list details {
    background: #fff;
    border: 1px solid #e0e9e9;
    border-radius: 9px;
    margin-bottom: 12px;
    overflow: hidden;
}

.pkg-faq-list summary {
    cursor: pointer;
    padding: 20px 23px;
    font-weight: 700;
    color: #173b4d;
    list-style: none;
    position: relative;
    padding-right: 55px;
}

.pkg-faq-list summary::-webkit-details-marker {
    display: none;
}

.pkg-faq-list summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    font-size: 22px;
    color: #0C5C78;
    top: 15px;
}

.pkg-faq-list details[open] summary::after {
    content: "−";
}

.pkg-faq-list details p {
    padding: 0 23px 20px;
    color: #68787e;
    font-size: 14px;
}


/* =========================================================
   RATINGS
========================================================= */

.pkg-ratings {
    background: #fff;
    padding: 50px 0;
}

.pkg-platform-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.pkg-platform {
    text-align: center;
    padding: 20px 12px;
    border: 1px solid #e0eaea;
    border-radius: 9px;
}

.pkg-platform strong {
    display: block;
    color: #173b4d;
    margin-bottom: 5px;
}

.pkg-platform span {
    color: #0C5C78;
    font-size: 13px;
    font-weight: 700;
}

.pkg-rating-note {
    text-align: center;
    margin-top: 18px;
    font-size: 12px;
    color: #7a898e;
}


/* =========================================================
   NEARBY
========================================================= */

.pkg-nearby {
    background: #f6faf9;
    padding: 50px 0;
}

.pkg-nearby-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 900px;
    margin: auto;
}

.pkg-nearby-list a {
    background: #fff;
    border: 1px solid #dce8e8;
    padding: 12px 17px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #40565d;
    transition: .2s;
    text-decoration: none;
}

.pkg-nearby-list a:hover {
    color: #0C5C78;
    border-color: #0C5C78;
}


/* =========================================================
   MEDICAL REVIEW
========================================================= */

.pkg-medical-review {
    background: #fff;
    border-top: 1px solid #e5eeee;
    padding: 50px 0;
}

.pkg-medical-box {
    max-width: 850px;
    margin: auto;
    background: #f7faf9;
    border: 1px solid #e0eaea;
    border-radius: 12px;
    padding: 30px;
}

.pkg-review-label {
    color: #0C5C78;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.pkg-medical-box h3 {
    color: #173b4d;
    margin-bottom: 3px;
}

.pkg-medical-box p {
    color: #66777d;
    font-size: 14px;
    margin-bottom: 20px;
}

.pkg-medical-note {
    border-top: 1px solid #dce7e7;
    padding-top: 20px;
    font-size: 13px;
    color: #728187;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1000px) {

    .pkg-hero-grid,
    .pkg-intro-grid,
    .pkg-doctor-grid,
    .pkg-location-grid {
        grid-template-columns: 1fr;
    }

    .pkg-hero {
        padding: 55px 0;
    }

    .pkg-doctor-card {
        max-width: 600px;
        margin: auto;
    }

    .pkg-treatment-grid,
    .pkg-specialized-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pkg-confidence-grid,
    .pkg-review-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pkg-platform-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 700px) {

    .pkg-hero {
        padding: 42px 0;
    }

    .pkg-hero h1 {
        font-size: 38px;
    }

    .pkg-hero-text {
        font-size: 16px;
    }

    .pkg-trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pkg-trust-item {
        border-bottom: 1px solid #edf2f2;
    }

    .pkg-treatment-grid,
    .pkg-specialized-grid,
    .pkg-confidence-grid,
    .pkg-review-grid,
    .pkg-consult-grid,
    .pkg-why-grid {
        grid-template-columns: 1fr;
    }

    .pkg-doctor-large {
        min-height: 300px;
    }

    .pkg-doctor-content h2,
    .pkg-location-content h2,
    .pkg-intro-content h2 {
        font-size: 30px;
    }

    .pkg-doctor-checks,
    .pkg-location-list {
        grid-template-columns: 1fr;
    }

    .pkg-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .pkg-cta .pkg-btn {
        width: 100%;
    }

    .pkg-platform-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pkg-location-map {
        min-height: 260px;
    }

    .pkg-medical-box {
        padding: 22px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .pkg-wrap {
        width: 90%;
    }

    .pkg-hero h1 {
        font-size: 33px;
        letter-spacing: -1px;
    }

    .pkg-hero-buttons {
        flex-direction: column;
    }

    .pkg-hero-buttons .pkg-btn {
        width: 100%;
    }

    .pkg-hero-points {
        flex-direction: column;
    }

    .pkg-hero-point {
        text-align: center;
    }

    .pkg-doctor-photo {
        height: 270px;
    }

    .pkg-section-head {
        margin-bottom: 32px;
    }

    .pkg-section-head h2 {
        font-size: 29px;
    }

    .pkg-platform-grid {
        grid-template-columns: 1fr;
    }

    .pkg-nearby-list {
        justify-content: flex-start;
    }

    .pkg-nearby-list a {
        width: 100%;
        text-align: center;
    }

}

/* =========================================================
   FINAL MOBILE RESPONSIVE FIX - Sexologist Page
========================================================= */

html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}

/* Top Bar - completely hide on mobile */
@media (max-width: 768px) {
  .top-bar {
    display: none !important;
  }
}

/* ===== NAV + HAMBURGER FIX ===== */
@media (max-width: 768px) {
  .nav {
    height: 60px;
  }

  .logo {
    font-size: 1.1rem;
  }
  .logo svg {
    width: 30px;
    height: 30px;
  }

  .nav-links {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 24px 40px;
    gap: 18px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    transform: translateX(100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s;
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links.open {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
  }

  .hamburger {
    display: flex !important;
    z-index: 1001;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
}

/* ===== HERO SECTION MOBILE ===== */
@media (max-width: 768px) {
  .pkg-hero {
    padding: 36px 0 40px !important;
  }

  .pkg-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }

  .pkg-hero h1 {
    font-size: 32px !important;
    line-height: 1.2;
    letter-spacing: -0.8px;
  }

  .pkg-hero-text {
    font-size: 15.5px !important;
  }

  .pkg-hero-buttons {
    flex-direction: column !important;
    gap: 12px;
  }

  .pkg-hero-buttons .pkg-btn {
    width: 100% !important;
    justify-content: center;
  }

  .pkg-hero-points {
    flex-direction: column;
  }

  .pkg-hero-point {
    text-align: center;
    width: 100%;
  }

  .pkg-doctor-card {
    max-width: 100%;
  }
}

/* ===== ALL GRIDS → 1 COLUMN ===== */
@media (max-width: 700px) {
  .pkg-treatment-grid,
  .pkg-why-grid,
  .pkg-confidence-grid,
  .pkg-review-grid,
  .pkg-consult-grid,
  .pkg-specialized-grid,
  .pkg-doctor-checks,
  .pkg-location-list,
  .pkg-trust-grid {
    grid-template-columns: 1fr !important;
  }

  .pkg-platform-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .pkg-cta-box {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 20px;
  }

  .pkg-cta .pkg-btn {
    width: 100% !important;
  }
}

/* ===== SMALL PHONES ===== */
@media (max-width: 480px) {
  .pkg-wrap {
    width: 92% !important;
    padding-left: 0;
    padding-right: 0;
  }

  .pkg-hero h1 {
    font-size: 28px !important;
  }

  .pkg-section-head h2 {
    font-size: 26px !important;
  }

  .pkg-nearby-list a {
    width: 100%;
    text-align: center;
  }
}

/* Remove the bad rule */
@media (max-width: 767px) {
  .pkg-doctor-meta div {
    margin-top: 80px!important;   
  }
}


.awards-section {
  background: #0C5C78;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.award-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(251, 191, 36, 0.15);
  transition: all 0.3s ease;
}

.award-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.award-card:hover {
  border-color: #fbbf24;
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(251, 191, 36, 0.15);
}

.award-card:hover img {
  transform: scale(1.06);
}

/* Responsive */
@media (max-width: 900px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .awards-grid {
    grid-template-columns: 1fr;
  }

  .award-card img {
    height: 260px;
  }
}

.section-header h2 {
    text-align: center;
  font-weight: 700;
  /*margin-bottom: 10px;*/
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
    text-align: center;
  color: #f1f1f1;
  font-size: 1.1rem;
  margin-bottom: 10px;
}