:root {
  --primary: #f5821f;
  --primary-dark: #d96a0a;
  --primary-light: #fdeee0;
  --accent: #111111;
  --text: #111111;
  --text-light: #4a4a4a;
  --bg: #ffffff;
  --bg-alt: #f7f2ec;
  --border: #e8e0d6;
  --shadow: 0 4px 16px rgba(20, 12, 0, 0.10);
  --shadow-lg: 0 8px 30px rgba(20, 12, 0, 0.18);
  --radius: 12px;
  --max-width: 1150px;
  --font: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 500;
  background: #111;
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  font-weight: 700;
}

.skip-link:focus {
  left: 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--primary-dark);
  color: #fff;
  font-size: 0.9rem;
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar a {
  color: #fff;
  margin-left: 16px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

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

.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: #fff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-logo svg {
  width: 30px;
  height: 30px;
  fill: var(--primary);
}



.brand-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: #f5821f;
  line-height: 1.1;
  background: #111;
  padding: 6px 12px;
  border-radius: 6px;
}

.brand-tag {
  font-size: 0.75rem;
  color: var(--text-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  padding: 6px 0;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.btn-nav {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: 8px;
  font-weight: 600 !important;
}

.btn-nav:hover {
  background: var(--primary-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
}

.page-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 48px 0;
  text-align: center;
}

.page-banner h1 {
  font-size: 2.2rem;
  margin-bottom: 6px;
}

.page-banner p {
  opacity: 0.9;
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 120px 0;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(
      rgba(20, 12, 0, 0.72),
      rgba(0, 0, 0, 0.82)
    ),
    url("../images/hero-clinic.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero .container {
  max-width: 780px;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
  color: #ffd9b0;
}

.hero p {
  font-size: 1.15rem;
  color: #eaf4f9;
  margin: 0 auto 30px;
  max-width: 620px;
}

.hero .btn-group {
  justify-content: center;
}

.hero .btn-outline {
  border-color: #fff;
  color: #fff;
}

.hero .btn-outline:hover {
  background: #fff;
  color: var(--primary);
}

.btn-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s;
}

.btn:hover {
  background: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1.05rem;
}

.hero-card {
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.hero-stat {
  text-align: center;
  padding: 14px;
  background: var(--bg-alt);
  border-radius: var(--radius);
}

.hero-stat .num {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ---------- Sections ---------- */
.section {
  padding: 70px 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 46px;
}

.section-head h2 {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 10px;
}

.section-head p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.section-head .tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- Features / Why us ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature .icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.feature h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.feature p {
  color: var(--text-light);
  font-size: 0.97rem;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-body {
  padding: 26px;
  flex: 1;
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.service-body h3 {
  margin-bottom: 8px;
}

.service-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.service-foot {
  padding: 0 26px 26px;
}

/* ---------- Doctors ---------- */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.doctors-grid-single {
  grid-template-columns: 1fr;
  max-width: 520px;
  margin: 0 auto;
}

.doctor-card {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  padding: 30px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.doctor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.doctor-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
}

.doctor-card h3 {
  margin-bottom: 2px;
}

.doctor-card .role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.doctor-card .bio {
  color: var(--text-light);
  font-size: 0.93rem;
}

.dual-expertise {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.dual-expertise h4 {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 1rem;
}

.dual-expertise p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.93rem;
}

/* ---------- Hours / Contact ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-card {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 26px;
}

.info-card h3 {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card ul {
  list-style: none;
}

.info-card li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
}

.info-card li:last-child {
  border-bottom: none;
}

.info-card .day {
  color: var(--text-light);
}

.info-card .open {
  font-weight: 600;
  color: var(--primary);
}

.info-card .closed {
  font-weight: 600;
  color: #e74c3c;
}

/* ---------- Booking form ---------- */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.booking-form {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 34px;
  box-shadow: var(--shadow);
}

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

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  transition: border 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

textarea {
  resize: vertical;
  min-height: 90px;
}

.form-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  display: none;
  font-weight: 500;
}

.form-message.success {
  display: block;
  background: #e7f8ee;
  color: #1d7a3f;
  border: 1px solid #b7e5c6;
}

.form-message.error {
  display: block;
  background: #fdecec;
  color: #c0392b;
  border: 1px solid #f3b5b5;
}

.booking-sidebar {
  display: grid;
  gap: 18px;
}

.booking-note {
  background: var(--primary-light);
  border-left: 5px solid var(--primary);
  padding: 20px 24px;
  border-radius: var(--radius);
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 26px;
}

.testimonial .stars {
  color: #f5b301;
  margin-bottom: 12px;
}

.testimonial p {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial .author {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial .meta {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* ---------- WhatsApp ---------- */
.btn-whatsapp {
  background: #25d366;
}

.btn-whatsapp:hover {
  background: #1da851;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, background 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background: #1da851;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.whatsapp-float .label {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--text);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.whatsapp-float:hover .label {
  opacity: 1;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--primary-light);
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

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

/* ---------- CTA band ---------- */.cta-band {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  text-align: center;
  padding: 56px 0;
}

.cta-band h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.cta-band p {
  opacity: 0.9;
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band .btn {
  background: #fff;
  color: var(--primary);
}

.cta-band .btn:hover {
  background: var(--primary-light);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #111111;
  color: #cfcfcf;
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 36px;
}

.site-footer h3 {
  color: #f5821f;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.site-footer ul {
  list-style: none;
}

.site-footer li {
  margin-bottom: 8px;
}

.site-footer a {
  color: #cfcfcf;
}

.site-footer a:hover {
  color: #f5821f;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ---------- Chatbot ---------- */
.chat-bubble {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 300;
}

.chat-open-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 1.9rem;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(245, 130, 31, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
  position: relative;
}

.chat-open-btn:hover {
  transform: scale(1.08);
  background: var(--primary-dark);
}

.chat-popup {
  position: fixed;
  bottom: 96px;
  left: 24px;
  width: 340px;
  max-width: calc(100vw - 32px);
  height: 520px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  z-index: 301;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}

.chat-popup.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chat-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-header .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.chat-header .title {
  font-weight: 700;
  line-height: 1.2;
}

.chat-header .subtitle {
  font-size: 0.78rem;
  opacity: 0.9;
}

.chat-close {
  margin-left: auto;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}

.chat-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.5;
  white-space: pre-line;
}

.chat-msg.bot {
  align-self: flex-start;
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
}

.chat-msg.bot a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: underline;
  word-break: break-all;
}

.chat-msg.bot a:hover {
  color: var(--primary);
}

.chat-msg.user {
  align-self: flex-end;
  background: var(--primary);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 8px;
}

.chat-quick button {
  background: var(--primary-light);
  border: 1px solid var(--primary);
  color: var(--primary-dark);
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;
}

.chat-quick button:hover {
  background: var(--primary);
  color: #fff;
}

.chat-input-row {
  display: flex;
  border-top: 1px solid var(--border);
  background: #fff;
}

.chat-input-row input {
  flex: 1;
  border: none;
  padding: 14px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
}

.chat-input-row button {
  background: var(--primary);
  border: none;
  color: #fff;
  padding: 0 18px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 700;
}

.chat-input-row button:hover {
  background: var(--primary-dark);
}

@media (max-width: 620px) {
  .chat-popup {
    left: 12px;
    right: 12px;
    width: auto;
    bottom: 84px;
    height: calc(100vh - 120px);
    max-height: 520px;
  }

  .chat-open-btn {
    width: 56px;
    height: 56px;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .features-grid,
  .services-grid,
  .doctors-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet: collapsed nav + stacked hero/booking */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 26px;
    gap: 18px;
    box-shadow: var(--shadow-lg);
    display: none;
    border-top: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.05rem;
    padding: 8px 0;
    width: 100%;
  }

  .nav-links a.active::after {
    display: none;
  }

  .hero .container,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 90px 0;
  }

  .testimonial-grid,
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 620px) {
  .hero {
    padding: 70px 0;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 50px 0;
  }

  .features-grid,
  .services-grid,
  .doctors-grid,
  .testimonial-grid,
  .info-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .topbar .container {
    justify-content: center;
  }

  .topbar .right {
    display: none;
  }

  .page-banner {
    padding: 36px 0;
  }

  .page-banner h1 {
    font-size: 1.7rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-lg {
    text-align: center;
  }

  .hero-card {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Enhanced mobile & tablet optimizations ---------- */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Prevent horizontal scroll from any overflowing element */
body {
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  height: auto;
}

/* Comfortable touch targets */
.nav-links a,
.btn,
.chat-quick button,
.nav-toggle {
  touch-action: manipulation;
}

/* Safe-area insets for notched phones */
.whatsapp-float,
.chat-open-btn,
.chat-popup {
  margin-bottom: env(safe-area-inset-bottom);
}

/* Forms: 16px font prevents iOS auto-zoom on focus */
.form-group input,
.form-group select,
.form-group textarea,
.chat-input-row input {
  font-size: 16px;
}

/* Better sticky header on mobile */
@media (max-width: 900px) {
  .site-header {
    position: sticky;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .brand-name {
    font-size: 1.05rem;
  }

  .brand-tag {
    display: none;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .container {
    padding: 0 16px;
  }
}

/* Landscape phones and short screens */
@media (max-height: 480px) and (orientation: landscape) {
  .hero {
    padding: 56px 0;
  }

  .chat-popup {
    height: 90vh;
    max-height: 90vh;
    bottom: 10px;
  }
}

