/* ============================================================
   PHYSIO BRIDGE CLINIC - ELEGANT MEDICAL DESIGN SYSTEM
   Domain: physiobridge.com | North Karachi
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800&display=swap');

:root {
  /* Ultra-Premium Medical Palette */
  --color-primary-dark: #0F172A;   /* Deep Slate Navy */
  --color-primary-brand: #1E3A8A;  /* Royal Deep Blue */
  --color-primary-sky: #0284C7;    /* Medical Sky Accent */
  --color-accent: #F97316;         /* Energetic Orange CTA */
  --color-accent-hover: #EA580C;   /* Darker Orange Hover */
  
  --bg-main: #FFFFFF;              /* Pure White Canvas */
  --bg-surface: #F8FAFC;           /* Ice Blue / Soft Slate Surface */
  --bg-surface-solid: #FFFFFF;
  --bg-card: #FFFFFF;
  
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(15, 23, 42, 0.08);
  --glass-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.07);
  
  --text-main: #0F172A;            /* High-Contrast Dark Slate Text */
  --text-muted: #334155;           /* Rich Slate Secondary Text */
  --text-inverse: #FFFFFF;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', sans-serif;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Base Resets & Prevent Mobile Horizontal Overflow */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-primary-dark);
  word-break: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Navigation Bar --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: all var(--transition-smooth);
}

header.scrolled {
  padding: 0.75rem 6%;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 75%;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(15, 23, 42, 0.12));
  transition: transform 0.3s ease;
}

.logo-link:hover .brand-logo-img {
  transform: scale(1.06);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.logo-text span {
  color: var(--color-accent);
}

nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.2rem;
}

nav ul li a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary-dark);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary-brand), var(--color-accent));
  transition: width var(--transition-smooth);
  border-radius: 2px;
}

nav ul li a:hover {
  color: var(--color-primary-brand);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

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

.header-social-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icon-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--glass-border);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-icon-link.facebook:hover { background: #1877F2; color: #fff; border-color: #1877F2; transform: translateY(-2px); }
.social-icon-link.instagram:hover { background: #E4405F; color: #fff; border-color: #E4405F; transform: translateY(-2px); }
.social-icon-link.whatsapp:hover { background: #25D366; color: #fff; border-color: #25D366; transform: translateY(-2px); }

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-primary-dark);
  font-size: 1.7rem;
  cursor: pointer;
  padding: 4px;
}

/* --- Buttons System --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: none;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  color: #FFFFFF !important;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: #FFFFFF;
  color: var(--color-primary-dark) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* --- Hero Section with Looping Background Video --- */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 6% 80px 6%;
  overflow: hidden;
  background: var(--color-primary-dark);
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

#hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.6) 55%, rgba(15, 23, 42, 0.35) 100%);
  z-index: 2;
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  max-width: 820px;
  text-align: left;
  margin-right: auto;
  color: #FFFFFF;
}

.hero-title {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: #FFFFFF;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: #E2E8F0;
  font-weight: 400;
  margin: 0 0 36px 0;
  max-width: 780px;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

/* --- Section Layouts & Cards --- */
.section-padding {
  padding: 90px 6%;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-subtitle {
  color: var(--color-accent);
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  color: var(--color-primary-dark);
  margin-bottom: 14px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
}

.grid-3d {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.card-3d {
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.card-3d:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary-brand);
  box-shadow: 0 25px 50px -12px rgba(30, 58, 138, 0.12);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: rgba(30, 58, 138, 0.06);
  border: 1px solid rgba(30, 58, 138, 0.15);
  color: var(--color-primary-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--color-primary-dark);
}

.card-body {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 0.95rem;
  transition: gap 0.3s ease;
}

.card-3d:hover .card-link {
  gap: 14px;
}

/* --- Team Specialists Section --- */
.team-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 36px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card-3d {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.team-avatar-wrapper {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 20px auto;
}

.team-avatar-ring {
  position: absolute;
  top: -6px;
  left: -6px;
  width: 172px;
  height: 172px;
  border-radius: 50%;
  border: 3px dashed var(--color-accent);
  animation: rotateRing 20s linear infinite;
}

@keyframes rotateRing {
  100% { transform: rotate(360deg); }
}

.team-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  border: 4px solid var(--color-primary-brand);
  background: #fff;
}

.team-role {
  color: var(--color-accent);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

/* --- Appointment Booking Section --- */
.booking-section-wrapper {
  background: linear-gradient(135deg, var(--color-primary-dark), #1E3A8A);
  border-radius: var(--radius-lg);
  padding: 55px 6%;
  color: #fff;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.booking-form-box {
  background: #FFFFFF;
  color: var(--text-main);
  padding: 36px 30px;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-primary-brand);
  background: #fff;
  box-shadow: 0 0 12px rgba(30, 58, 138, 0.15);
}

/* --- Store Page & Product Cards --- */
.store-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
  background: #FFFFFF;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.search-box {
  position: relative;
  flex: 1;
  min-width: 220px;
}

.search-box input {
  padding-left: 42px;
}

.search-box i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-btn {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  color: var(--color-primary-dark);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pill-btn.active, .pill-btn:hover {
  background: var(--color-primary-brand);
  color: #fff;
  border-color: var(--color-primary-brand);
}

.product-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #F1F5F9;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.08);
}

.badge-stock {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-in_stock { background: #10B981; color: #fff; }
.badge-out_of_stock { background: #EF4444; color: #fff; }

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 10px 0;
}

.price-current {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-accent);
}

.price-original {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* --- Floating Widgets --- */
.floating-social-bar {
  position: fixed;
  left: 16px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 995;
}

.floating-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.floating-social-btn:hover {
  transform: scale(1.15);
}

.floating-social-btn.fb { background: #1877F2; }
.floating-social-btn.insta { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); }

.whatsapp-float-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform 0.3s ease;
}

.whatsapp-float-widget:hover {
  transform: scale(1.1) rotate(10deg);
}

.chat-trigger-btn {
  position: fixed;
  bottom: 92px;
  right: 24px;
  background: var(--color-primary-dark);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.3);
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  transition: transform 0.3s ease;
}

.chat-trigger-btn:hover {
  transform: translateY(-3px);
  background: var(--color-primary-brand);
}

.chatbot-modal {
  position: fixed;
  bottom: 85px;
  right: 24px;
  width: 380px;
  max-width: 90vw;
  height: 500px;
  background: #FFFFFF;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chatbot-header {
  background: var(--color-primary-dark);
  padding: 16px 20px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #F8FAFC;
}

.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.45;
}

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

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

.chatbot-footer {
  padding: 12px;
  background: #fff;
  border-top: 1px solid #E2E8F0;
  display: flex;
  gap: 8px;
}

/* --- Admin Panel --- */
.admin-container {
  max-width: 1200px;
  margin: 90px auto 50px auto;
  padding: 0 4%;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}

.stat-card {
  background: #FFFFFF;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  background: #FFFFFF;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.admin-table th, .admin-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #E2E8F0;
  font-size: 0.88rem;
}

.admin-table th {
  background: var(--color-primary-dark);
  color: #fff;
  font-weight: 700;
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-content {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 600px;
  padding: 28px;
  position: relative;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.2);
}

/* ============================================================
   RESPONSIVE MOBILE BREAKPOINTS & LAYOUT OPTIMIZATIONS
   ============================================================ */

@media (max-width: 992px) {
  header {
    padding: 0.85rem 4%;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .header-social-group {
    display: none; /* Hide header social icons on mobile to prevent clutter */
  }

  nav ul {
    position: fixed;
    top: 66px;
    right: -100%;
    width: 290px;
    max-width: 80vw;
    height: calc(100vh - 66px);
    background: #FFFFFF;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    transition: right 0.4s ease;
    border-left: 1px solid #E2E8F0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    gap: 1.5rem;
  }

  nav ul.active {
    right: 0;
  }

  .hero-section {
    padding: 110px 5% 60px 5%;
    min-height: 85vh;
  }

  .hero-content-wrapper {
    text-align: center;
    margin: 0 auto;
  }

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

  .booking-section-wrapper {
    grid-template-columns: 1fr;
    padding: 40px 5%;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .brand-logo-img {
    height: 38px;
  }

  .logo-text {
    font-size: 1.15rem;
  }

  .hero-section {
    padding: 95px 4% 50px 4%;
    min-height: auto;
  }

  .hero-title {
    font-size: 1.95rem;
    line-height: 1.25;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.95rem;
  }

  .section-padding {
    padding: 50px 4%;
  }

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

  .section-title {
    font-size: 1.7rem;
  }

  .grid-3d {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .card-3d {
    padding: 26px 20px;
  }

  .booking-form-box {
    padding: 24px 18px;
  }

  .booking-form-box form div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .floating-social-bar {
    left: 10px;
    bottom: 16px;
    gap: 8px;
  }

  .floating-social-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .whatsapp-float-widget {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .chat-trigger-btn {
    bottom: 74px;
    right: 16px;
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .chatbot-modal {
    width: 92vw;
    right: 4vw;
    bottom: 70px;
    height: 440px;
  }
}
