
    @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');
    
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Outfit', sans-serif; color: #212121; overflow-x: hidden; }
    
    /* ===== NAVBAR ===== */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 0 5%;
      display: flex; align-items: center; height: 72px;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(20px);
      box-shadow: 0 1px 20px rgba(0,0,0,0.08);
      transition: all 0.3s;
    }
    
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 0 5%;
      display: flex; align-items: center; height: 82px;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(20px);
      box-shadow: 0 2px 24px rgba(0,0,0,0.08);
      transition: all 0.3s;
    }
    
    .nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
    .nav-logo img {
      width: 64px;
      height: 64px;
      border-radius: 14px;
      object-fit: contain;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: crisp-edges;
      filter: drop-shadow(0 3px 12px rgba(194,24,91,0.22));
      transition: transform 0.25s ease;
      background: #FFFFFF;
      padding: 2px;
    }
    .nav-logo:hover img { transform: scale(1.06); }
    .nav-brand { font-size: 16.5px; font-weight: 800; color: #212121; line-height: 1.25; }
    .nav-brand span { color: #C2185B; }
    
    .nav-links { display: flex; align-items: center; gap: 28px; margin: 0 auto; }
    .nav-links a { color: #424242; text-decoration: none; font-size: 14px; font-weight: 600; transition: color 0.2s; }
    .nav-links a:hover { color: #C2185B; }
    
    .nav-actions { display: flex; gap: 10px; }
    .btn-call { background: #FCE4EC; color: #C2185B; padding: 9px 18px; border-radius: 8px; font-weight: 700; font-size: 13.5px; text-decoration: none; transition: all 0.2s; }
    .btn-call:hover { background: #C2185B; color: white; }
    .btn-appt { background: linear-gradient(135deg, #C2185B, #880E4F); color: white; padding: 9px 18px; border-radius: 8px; font-weight: 700; font-size: 13.5px; text-decoration: none; box-shadow: 0 4px 15px rgba(194,24,91,0.3); transition: all 0.2s; }
    .btn-appt:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(194,24,91,0.4); color: white; }
    
    /* ===== HERO ===== */
    .hero {
      min-height: 100vh;
      background: linear-gradient(135deg, #0F0C29 0%, #302B63 40%, #1a0533 70%, #2d0024 100%);
      position: relative;
      display: flex;
      align-items: center;
      padding: 100px 5% 60px;
      overflow: hidden;
    }
    
    .hero-bg {
      position: absolute; inset: 0; overflow: hidden;
    }
    
    .hero-orb {
      position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.2;
      animation: float 10s ease-in-out infinite;
    }
    
    .hero-orb-1 { width: 500px; height: 500px; background: #C2185B; top: -100px; right: 10%; }
    .hero-orb-2 { width: 400px; height: 400px; background: #9C27B0; bottom: -50px; left: 20%; animation-delay: 3s; }
    .hero-orb-3 { width: 300px; height: 300px; background: #E91E63; top: 40%; left: -100px; animation-delay: 5s; }
    
    @keyframes float {
      0%, 100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-30px) scale(1.05); }
    }
    
    .hero-content { position: relative; z-index: 1; max-width: 650px; }
    
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(194,24,91,0.2); border: 1px solid rgba(194,24,91,0.4);
      color: #F48FB1; padding: 6px 16px; border-radius: 999px;
      font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
      margin-bottom: 24px;
    }
    
    .hero-title {
      font-size: clamp(36px, 5vw, 60px); font-weight: 900; color: white; line-height: 1.15;
      margin-bottom: 12px;
    }
    
    .hero-title .accent { color: #F48FB1; }
    
    .hero-subtitle {
      font-size: 20px; color: rgba(255,255,255,0.6); margin-bottom: 12px; font-style: italic;
    }
    
    .hero-desc {
      font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 36px; max-width: 520px;
    }
    
    .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
    
    .hero-btn-primary {
      padding: 15px 32px; background: linear-gradient(135deg, #C2185B, #880E4F);
      color: white; border-radius: 12px; text-decoration: none; font-size: 15px; font-weight: 700;
      box-shadow: 0 8px 30px rgba(194,24,91,0.4); transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px;
    }
    .hero-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(194,24,91,0.6); color: white; }
    
    .hero-btn-secondary {
      padding: 15px 32px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3);
      color: white; border-radius: 12px; text-decoration: none; font-size: 15px; font-weight: 600;
      transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; backdrop-filter: blur(10px);
    }
    .hero-btn-secondary:hover { background: rgba(255,255,255,0.2); color: white; }
    
    .hero-stats { display: flex; gap: 36px; }
    .hero-stat-value { font-size: 28px; font-weight: 900; color: white; }
    .hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); }
    .hero-stat-sep { width: 1px; background: rgba(255,255,255,0.15); }
    
    /* ===== HERO CONTAINER & SLIDESHOW ===== */
    .hero-container {
      position: relative; z-index: 2; width: 100%; max-width: 1280px; margin: 0 auto;
      display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
    }
    
    .hero-slider-box {
      position: relative;
      border-radius: 24px;
      padding: 8px;
      background: linear-gradient(135deg, rgba(255,255,255,0.22), rgba(194,24,91,0.3) 50%, rgba(255,255,255,0.08));
      box-shadow: 0 25px 60px rgba(0,0,0,0.55), 0 0 40px rgba(194,24,91,0.3);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,0.2);
    }
    
    .hero-slider {
      position: relative;
      width: 100%;
      height: 470px;
      border-radius: 18px;
      overflow: hidden;
      background: #0f0c29;
    }
    
    .hero-slide {
      position: absolute; inset: 0;
      opacity: 0;
      transform: scale(1.05);
      transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex; flex-direction: column; justify-content: flex-end;
      pointer-events: none;
    }
    
    .hero-slide.active {
      opacity: 1;
      transform: scale(1);
      z-index: 2;
      pointer-events: auto;
    }
    
    .hero-slide-bg-blur {
      position: absolute; inset: -20px;
      background-size: cover; background-position: center;
      filter: blur(25px) brightness(0.4);
      transform: scale(1.15);
    }
    
    .hero-slide-img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 25%;
      z-index: 1;
    }
    
    .hero-slide-overlay {
      position: absolute; inset: 0; z-index: 2;
      background: linear-gradient(to top, rgba(15,12,41,0.94) 0%, rgba(15,12,41,0.5) 45%, rgba(15,12,41,0.05) 75%);
    }
    
    .hero-slide-content {
      position: relative; z-index: 3;
      padding: 24px 28px;
      color: white;
    }
    
    .hero-slide-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(194,24,91,0.9); backdrop-filter: blur(8px);
      color: white; font-size: 11px; font-weight: 800;
      padding: 4px 12px; border-radius: 20px; text-transform: uppercase;
      letter-spacing: 0.5px; margin-bottom: 8px;
    }
    
    .hero-slide-title {
      font-size: 20px; font-weight: 800; color: white; margin-bottom: 4px; line-height: 1.3;
    }
    
    .hero-slide-desc {
      font-size: 13px; color: rgba(255,255,255,0.8); line-height: 1.5; max-width: 90%;
    }
    
    .slider-nav-btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 44px; height: 44px;
      background: rgba(15,12,41,0.65);
      border: 1px solid rgba(255,255,255,0.3);
      color: white; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; z-index: 10;
      transition: all 0.25s; backdrop-filter: blur(8px);
      font-size: 18px;
    }
    .slider-nav-btn:hover {
      background: #C2185B; border-color: #C2185B; transform: translateY(-50%) scale(1.1); color: white;
    }
    .slider-prev { left: 16px; }
    .slider-next { right: 16px; }
    
    .slider-dots {
      position: absolute; bottom: 14px; right: 24px; z-index: 10;
      display: flex; gap: 6px; align-items: center;
    }
    .slider-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(255,255,255,0.4);
      cursor: pointer; transition: all 0.3s;
    }
    .slider-dot.active {
      width: 26px; border-radius: 12px; background: #F48FB1;
    }

    .slider-float-badge {
      position: absolute; top: 18px; left: 18px; z-index: 10;
      background: rgba(15, 12, 41, 0.85);
      border: 1px solid rgba(255,255,255,0.25);
      backdrop-filter: blur(12px);
      border-radius: 12px; padding: 7px 14px;
      display: flex; align-items: center; gap: 8px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    }
    .slider-float-badge i { color: #F48FB1; font-size: 16px; }
    .slider-float-badge-text { font-size: 12px; font-weight: 700; color: white; line-height: 1.2; }
    .slider-float-badge-text small { color: rgba(255,255,255,0.65); font-size: 10px; font-weight: 400; display: block; }

    .slider-progress {
      position: absolute; bottom: 0; left: 0; height: 3px;
      background: linear-gradient(90deg, #C2185B, #F48FB1);
      z-index: 11; width: 0%;
      transition: width 0.1s linear;
    }

    .slider-thumbs {
      display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; padding-bottom: 2px;
      scrollbar-width: none;
    }
    .slider-thumbs::-webkit-scrollbar { display: none; }
    .slider-thumb {
      width: 54px; height: 38px; border-radius: 8px; overflow: hidden;
      border: 2px solid transparent; opacity: 0.55; cursor: pointer;
      flex-shrink: 0; transition: all 0.25s;
    }
    .slider-thumb img { width: 100%; height: 100%; object-fit: cover; }
    .slider-thumb.active {
      border-color: #F48FB1; opacity: 1; transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(194,24,91,0.35);
    }
    
    /* ===== SECTIONS ===== */
    section { padding: 80px 5%; }
    .section-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #C2185B; margin-bottom: 8px; }
    .section-title { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; color: #212121; margin-bottom: 16px; }
    .section-desc { font-size: 15px; color: #757575; max-width: 560px; line-height: 1.7; }
    .section-header { margin-bottom: 48px; }
    
    /* ===== SERVICES ===== */
    .services-section {
      background: #F8F8FC;
      position: relative;
      overflow: hidden;
      padding: 90px 5%;
    }
    
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 28px;
      margin-bottom: 48px;
    }
    
    .service-card {
      background: white;
      border-radius: 20px;
      padding: 30px 26px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.04);
      border: 1.5px solid #F0F0F5;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, #C2185B, #F48FB1);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 40px rgba(194,24,91,0.12);
      border-color: rgba(194,24,91,0.3);
    }
    .service-card:hover::before {
      opacity: 1;
    }

    .service-card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }
    
    .service-icon {
      width: 58px; height: 58px; border-radius: 16px;
      background: linear-gradient(135deg, #FCE4EC, #F8BBD9);
      display: flex; align-items: center; justify-content: center;
      transition: all 0.35s;
    }
    .service-card:hover .service-icon {
      background: linear-gradient(135deg, #C2185B, #880E4F);
      transform: scale(1.08) rotate(-4deg);
      box-shadow: 0 8px 20px rgba(194,24,91,0.35);
    }
    .service-icon i {
      color: #C2185B;
      font-size: 24px;
      transition: color 0.3s;
    }
    .service-card:hover .service-icon i {
      color: white;
    }

    .service-count-badge {
      font-size: 11.5px;
      font-weight: 700;
      color: #757575;
      background: #F5F5F7;
      padding: 5px 12px;
      border-radius: 20px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .service-title {
      font-size: 18px;
      font-weight: 800;
      color: #212121;
      margin-bottom: 4px;
      line-height: 1.3;
    }
    
    .service-bn-name {
      font-size: 13px;
      color: #C2185B;
      font-weight: 600;
      margin-bottom: 12px;
    }
    
    .service-desc {
      font-size: 13.5px;
      color: #616161;
      line-height: 1.65;
      margin-bottom: 18px;
      flex: 1;
    }

    .service-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-bottom: 22px;
      padding-top: 14px;
      border-top: 1px solid #F5F5F5;
    }

    .service-pill {
      background: #FAFAFC;
      border: 1px solid #EEEEEE;
      color: #424242;
      font-size: 11.5px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      transition: all 0.2s;
    }
    .service-pill i {
      color: #C2185B;
      font-size: 9px;
    }
    .service-card:hover .service-pill {
      background: #FFF0F5;
      border-color: #F8BBD9;
      color: #C2185B;
    }

    .service-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 14px;
      border-top: 1.5px solid #F8F8FC;
    }

    .service-view-link {
      font-size: 13px;
      font-weight: 700;
      color: #C2185B;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s;
    }
    .service-view-link:hover {
      gap: 10px;
      color: #880E4F;
    }

    .service-book-cta {
      background: #FCE4EC;
      color: #C2185B;
      font-size: 12px;
      font-weight: 700;
      padding: 6px 14px;
      border-radius: 8px;
      text-decoration: none;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }
    .service-book-cta:hover {
      background: #C2185B;
      color: white;
      transform: translateY(-1px);
    }
    
    .services-cta-banner {
      background: linear-gradient(135deg, #0F0C29 0%, #302B63 50%, #4a0d2f 100%);
      border-radius: 20px;
      padding: 32px 36px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      box-shadow: 0 16px 40px rgba(15,12,41,0.25);
      color: white;
    }
    .services-cta-banner-title {
      font-size: 20px;
      font-weight: 800;
      color: white;
      margin-bottom: 6px;
    }
    .services-cta-banner-desc {
      font-size: 13.5px;
      color: rgba(255,255,255,0.7);
      line-height: 1.5;
    }
    .services-cta-btns {
      display: flex;
      gap: 12px;
      flex-shrink: 0;
    }
    @media (max-width: 768px) {
      .services-cta-banner { flex-direction: column; text-align: center; }
      .services-cta-btns { flex-direction: column; width: 100%; }
      .services-grid { grid-template-columns: 1fr; }
    }
    
    /* ===== DOCTORS ===== */
    .doctors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
    
    .doctor-card {
      background: white; border-radius: 16px; overflow: hidden;
      box-shadow: 0 2px 10px rgba(0,0,0,0.07); border: 1px solid #EEEEEE;
      transition: all 0.3s; text-align: center;
    }
    .doctor-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
    .doctor-photo-wrap { height: 160px; background: linear-gradient(135deg, #FCE4EC, #F8BBD9); display: flex; align-items: center; justify-content: center; }
    .doctor-photo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 4px solid white; box-shadow: 0 4px 20px rgba(194,24,91,0.2); }
    .doctor-avatar { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, #C2185B, #880E4F); display: flex; align-items: center; justify-content: center; font-size: 36px; font-weight: 800; color: white; border: 4px solid white; }
    .doctor-info { padding: 16px; }
    .doctor-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
    .doctor-spec { font-size: 12px; color: #C2185B; font-weight: 600; margin-bottom: 8px; }
    .doctor-qual { font-size: 12px; color: #9E9E9E; }
    
    /* ===== WHY US ===== */
    .why-section { background: linear-gradient(135deg, #0F0C29, #302B63); color: white; }
    .why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
    .why-item { text-align: center; }
    .why-icon { font-size: 36px; margin-bottom: 14px; display: block; }
    .why-title { font-size: 15px; font-weight: 700; color: white; margin-bottom: 6px; }
    .why-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
    
    /* ===== CONTACT ===== */
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
    .contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
    .contact-icon { width: 44px; height: 44px; background: #FCE4EC; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #C2185B; font-size: 18px; flex-shrink: 0; }
    .contact-label { font-size: 12px; color: #9E9E9E; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
    .contact-value { font-size: 14px; font-weight: 600; color: #212121; }
    
    /* ===== FOOTER ===== */
    footer { background: #1A1A2E; color: rgba(255,255,255,0.6); padding: 40px 5%; text-align: center; }
    .footer-logo { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 16px; }
    .footer-logo img {
      width: 58px;
      height: 58px;
      border-radius: 12px;
      background: white;
      padding: 3px;
      object-fit: contain;
      box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }
    .footer-name { color: white; font-weight: 800; font-size: 16px; }
    .footer-links { display: flex; justify-content: center; gap: 24px; margin: 16px 0; flex-wrap: wrap; }
    .footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; transition: color 0.2s; }
    .footer-links a:hover { color: #F48FB1; }
    
    /* ===== MOBILE NAV ===== */
    .nav-toggle { display: none; background: none; border: none; font-size: 24px; color: #212121; cursor: pointer; }
    
    @media (max-width: 992px) {
      .hero-container { grid-template-columns: 1fr; gap: 36px; padding-top: 20px; }
      .hero-content { max-width: 100%; text-align: center; }
      .hero-desc { margin-left: auto; margin-right: auto; }
      .hero-btns { justify-content: center; }
      .hero-stats { justify-content: center; }
      .hero-slider { height: 380px; }
    }
    
    @media (max-width: 768px) {
      .nav-links, .nav-actions { display: none; }
      .nav-toggle { display: block; margin-left: auto; }
      .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: white; padding: 20px; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
      .hero-stats { flex-wrap: wrap; gap: 20px; }
      .hero-slider { height: 320px; }
      .contact-grid { grid-template-columns: 1fr; }
    }
    
    /* ===== APPOINTMENT FORM ===== */
    .appt-form { background: white; border-radius: 20px; padding: 32px; box-shadow: 0 8px 40px rgba(0,0,0,0.1); }
    .appt-input { width: 100%; padding: 12px 16px; border: 1.5px solid #E0E0E0; border-radius: 10px; font-size: 14px; font-family: inherit; color: #212121; margin-bottom: 14px; outline: none; transition: border 0.2s; }
    .appt-input:focus { border-color: #C2185B; box-shadow: 0 0 0 3px rgba(194,24,91,0.1); }
    .appt-btn { width: 100%; padding: 14px; background: linear-gradient(135deg, #C2185B, #880E4F); color: white; border: none; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit; transition: all 0.2s; }
    .appt-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(194,24,91,0.4); }

    /* ===== ACTION HUB (PINTEREST / METAMATN STYLE) ===== */
    .action-hub-section {
      margin-top: 50px;
      position: relative;
      z-index: 20;
      padding: 30px 5% 60px;
      margin-bottom: 50px;
    }
    .action-hub-grid {
      max-width: 1220px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .action-card {
      background: white;
      border-radius: 20px;
      padding: 32px 28px;
      box-shadow: 0 15px 45px rgba(15,12,41,0.09);
      border: 1.5px solid #F0F0F5;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }
    .action-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, #C2185B, #F48FB1);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .action-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(194,24,91,0.16);
      border-color: rgba(194,24,91,0.3);
    }
    .action-card:hover::after { opacity: 1; }
    .action-icon {
      width: 58px; height: 58px;
      border-radius: 16px;
      background: linear-gradient(135deg, #FCE4EC, #F8BBD9);
      display: flex; align-items: center; justify-content: center;
      font-size: 26px; color: #C2185B;
      margin-bottom: 18px;
      transition: all 0.3s;
    }
    .action-card:hover .action-icon {
      background: linear-gradient(135deg, #C2185B, #880E4F);
      color: white;
      transform: scale(1.08) rotate(-4deg);
    }
    .action-title {
      font-size: 19px; font-weight: 800; color: #212121; margin-bottom: 6px;
    }
    .action-desc {
      font-size: 13.5px; color: #666666; line-height: 1.6; margin-bottom: 22px; flex: 1;
    }
    .action-btn {
      padding: 12px 20px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 13.5px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: all 0.25s;
    }
    .action-btn-primary {
      background: linear-gradient(135deg, #C2185B, #880E4F);
      color: white;
      box-shadow: 0 4px 15px rgba(194,24,91,0.3);
    }
    .action-btn-primary:hover {
      box-shadow: 0 8px 25px rgba(194,24,91,0.5);
      transform: translateY(-2px);
      color: white;
    }
    .action-btn-secondary {
      background: #FCE4EC;
      color: #C2185B;
    }
    .action-btn-secondary:hover {
      background: #C2185B;
      color: white;
      transform: translateY(-2px);
    }
    .action-btn-emergency {
      background: #FFEBEE;
      color: #D32F2F;
    }
    .action-btn-emergency:hover {
      background: #D32F2F;
      color: white;
      transform: translateY(-2px);
    }

    /* ===== SIGNATURE DENTAL INNOVATIONS ===== */
    .innovations-section {
      padding: 85px 5%;
      background: white;
    }
    .innovations-grid {
      max-width: 1220px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .innov-card {
      background: #FAFAFC;
      border: 1.5px solid #F0F0F5;
      border-radius: 18px;
      padding: 28px 24px;
      transition: all 0.3s;
      position: relative;
    }
    .innov-card:hover {
      background: white;
      border-color: #F48FB1;
      transform: translateY(-6px);
      box-shadow: 0 14px 35px rgba(194,24,91,0.09);
    }
    .innov-icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: linear-gradient(135deg, #FCE4EC, #FFF0F5);
      color: #C2185B;
      display: flex; align-items: center; justify-content: center;
      font-size: 24px; margin-bottom: 16px;
    }
    .innov-title { font-size: 17px; font-weight: 800; color: #212121; margin-bottom: 6px; }
    .innov-desc { font-size: 13.5px; color: #666; line-height: 1.6; }

    /* ===== TESTIMONIALS (WHAT OUR PATIENTS SAY) ===== */
    .reviews-section {
      padding: 95px 5%;
      background: linear-gradient(135deg, #0F0C29 0%, #201A45 55%, #4a0d2f 100%);
      color: white;
      position: relative;
      overflow: hidden;
    }
    .reviews-grid {
      max-width: 1220px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .review-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.15);
      backdrop-filter: blur(16px);
      border-radius: 20px;
      padding: 30px 26px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: all 0.35s;
    }
    .review-card:hover {
      transform: translateY(-6px);
      border-color: rgba(244,143,177,0.5);
      box-shadow: 0 16px 40px rgba(0,0,0,0.3);
      background: rgba(255,255,255,0.12);
    }
    .review-stars {
      color: #FFB300; font-size: 15px; margin-bottom: 14px; letter-spacing: 2px;
    }
    .review-text {
      font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.85); font-style: italic; margin-bottom: 22px; flex: 1;
    }
    .review-author {
      display: flex; align-items: center; gap: 12px;
      border-top: 1px solid rgba(255,255,255,0.12);
      padding-top: 16px;
    }
    .review-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      background: linear-gradient(135deg, #C2185B, #880E4F);
      display: flex; align-items: center; justify-content: center;
      color: white; font-weight: 800; font-size: 16px; flex-shrink: 0;
    }
    .review-author-name { font-size: 14.5px; font-weight: 700; color: white; }
    .review-author-meta { font-size: 12px; color: #F48FB1; display: flex; align-items: center; gap: 4px; }

    /* ===== VIRTUAL DENTAL ASSISTANT (BOTTOM SIDEBAR) ===== */
    .bottom-assistant-wrapper {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 10000;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 12px;
      pointer-events: none;
      font-family: 'Outfit', sans-serif;
    }
    
    .bottom-assistant-trigger {
      pointer-events: auto;
      background: #FFFFFF;
      border: 1.5px solid #F8BBD9;
      box-shadow: 0 10px 32px rgba(194,24,91,0.22);
      border-radius: 999px;
      padding: 8px 18px 8px 10px;
      display: flex;
      align-items: center;
      gap: 12px;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      user-select: none;
    }
    .bottom-assistant-trigger:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 14px 40px rgba(194,24,91,0.35);
      border-color: #C2185B;
    }
    .assistant-trigger-badge {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, #C2185B, #880E4F);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 21px;
      position: relative;
      flex-shrink: 0;
      box-shadow: 0 4px 15px rgba(194,24,91,0.35);
    }
    .online-beacon-pulse {
      position: absolute;
      top: -1px;
      right: -1px;
      width: 13px;
      height: 13px;
      border-radius: 50%;
      background: #00E676;
      border: 2px solid white;
      box-shadow: 0 0 10px #00E676;
      animation: beaconPulse 2s infinite ease-in-out;
    }
    @keyframes beaconPulse {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.25); opacity: 0.8; }
    }
    .assistant-trigger-label {
      text-align: left;
    }
    .trigger-name {
      font-size: 14.5px;
      font-weight: 800;
      color: #212121;
      display: block;
      line-height: 1.2;
    }
    .trigger-status {
      font-size: 11.5px;
      font-weight: 700;
      color: #C2185B;
      display: flex;
      align-items: center;
      gap: 5px;
      margin-top: 2px;
    }
    .status-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #00E676;
      display: inline-block;
    }
    .assistant-trigger-open-icon {
      color: #880E4F;
      font-size: 15px;
      font-weight: 800;
      transition: transform 0.3s;
      margin-left: 2px;
    }
    .bottom-assistant-wrapper.open .assistant-trigger-open-icon i {
      transform: rotate(180deg);
    }

    /* Assistant Panel (Window) */
    .bottom-assistant-panel {
      pointer-events: auto;
      width: 390px;
      max-width: calc(100vw - 32px);
      height: 570px;
      max-height: calc(100vh - 110px);
      background: #FFFFFF;
      border-radius: 24px;
      box-shadow: 0 24px 70px rgba(0,0,0,0.22), 0 0 0 1px rgba(194,24,91,0.15);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transform-origin: bottom right;
      animation: slideUpAssistant 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      border: 1.5px solid #FCE4EC;
    }
    @keyframes slideUpAssistant {
      0% { opacity: 0; transform: translateY(20px) scale(0.95); }
      100% { opacity: 1; transform: translateY(0) scale(1); }
    }

    .assistant-panel-header {
      background: linear-gradient(135deg, #C2185B 0%, #880E4F 100%);
      color: white;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .assistant-avatar-badge {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: rgba(255,255,255,0.2);
      backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 20px;
      position: relative;
      flex-shrink: 0;
    }
    .online-beacon {
      position: absolute;
      top: -2px;
      right: -2px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #00E676;
      border: 2px solid white;
    }
    .assistant-panel-title {
      font-size: 15px;
      font-weight: 800;
      letter-spacing: 0.3px;
      line-height: 1.2;
    }
    .assistant-panel-sub {
      font-size: 11.5px;
      opacity: 0.9;
      display: flex;
      align-items: center;
      gap: 4px;
      margin-top: 2px;
    }
    .assistant-ctrl-btn {
      background: rgba(255,255,255,0.18);
      border: none;
      color: white;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      cursor: pointer;
      transition: all 0.2s;
    }
    .assistant-ctrl-btn:hover {
      background: rgba(255,255,255,0.32);
      transform: scale(1.08);
    }

    .assistant-panel-body {
      flex: 1;
      overflow-y: auto;
      padding: 16px;
      background: #FDFBFD;
      display: flex;
      flex-direction: column;
      gap: 12px;
      scroll-behavior: smooth;
    }
    .assistant-panel-body::-webkit-scrollbar {
      width: 5px;
    }
    .assistant-panel-body::-webkit-scrollbar-thumb {
      background: #F8BBD9;
      border-radius: 10px;
    }

    .assistant-msg-bubble {
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }
    .assistant-msg-bot .bot-icon {
      width: 32px;
      height: 32px;
      border-radius: 10px;
      background: linear-gradient(135deg, #C2185B, #880E4F);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .assistant-msg-bot .bot-text {
      background: white;
      border: 1px solid #F8BBD9;
      border-radius: 16px 16px 16px 4px;
      padding: 13px 15px;
      font-size: 13px;
      color: #212121;
      line-height: 1.65;
      box-shadow: 0 2px 8px rgba(194,24,91,0.06);
    }
    .assistant-msg-user {
      justify-content: flex-end;
    }
    .assistant-msg-user .user-text {
      background: linear-gradient(135deg, #C2185B, #880E4F);
      color: white;
      padding: 10px 15px;
      border-radius: 16px 16px 4px 16px;
      font-size: 13px;
      font-weight: 500;
      line-height: 1.5;
      max-width: 82%;
      box-shadow: 0 4px 12px rgba(194,24,91,0.22);
    }

    .assistant-panel-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin: 4px 0 8px;
    }
    .assistant-pill {
      background: white;
      border: 1px solid #FCE4EC;
      color: #880E4F;
      padding: 6px 11px;
      border-radius: 18px;
      font-size: 11.5px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    }
    .assistant-pill:hover {
      background: #C2185B;
      color: white;
      border-color: #C2185B;
      transform: translateY(-1px);
      box-shadow: 0 3px 8px rgba(194,24,91,0.25);
    }

    .assistant-bot-actions {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 10px;
      padding-top: 10px;
      border-top: 1px dashed #F8BBD9;
    }
    .assistant-chat-btn {
      padding: 7px 12px;
      border-radius: 8px;
      font-size: 12px;
      font-weight: 700;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: all 0.2s;
    }
    .assistant-chat-btn-primary {
      background: linear-gradient(135deg, #C2185B, #880E4F);
      color: white;
      box-shadow: 0 2px 8px rgba(194,24,91,0.25);
    }
    .assistant-chat-btn-primary:hover {
      transform: translateY(-1px);
      color: white;
      box-shadow: 0 4px 12px rgba(194,24,91,0.4);
    }
    .assistant-chat-btn-call {
      background: #E8F5E9;
      color: #2E7D32;
      border: 1px solid #C8E6C9;
    }
    .assistant-chat-btn-call:hover {
      background: #2E7D32;
      color: white;
    }

    .assistant-panel-footer {
      padding: 12px 14px;
      background: white;
      border-top: 1px solid #FCE4EC;
      display: flex;
      gap: 8px;
      align-items: center;
    }
    .assistant-panel-input {
      flex: 1;
      padding: 10px 14px;
      border: 1.5px solid #E0E0E0;
      border-radius: 12px;
      font-size: 13px;
      font-family: inherit;
      color: #212121;
      outline: none;
      background: #FAFAFC;
      transition: all 0.2s;
    }
    .assistant-panel-input:focus {
      border-color: #C2185B;
      background: white;
      box-shadow: 0 0 0 3px rgba(194,24,91,0.12);
    }
    .assistant-panel-send {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: linear-gradient(135deg, #C2185B, #880E4F);
      color: white;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      cursor: pointer;
      transition: all 0.2s;
      flex-shrink: 0;
      box-shadow: 0 3px 10px rgba(194,24,91,0.28);
    }
    .assistant-panel-send:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(194,24,91,0.4);
    }

    /* Hub Callout Pill */
    .assistant-hub-callout {
      background: linear-gradient(135deg, #FFF5F8 0%, #FCE4EC 100%);
      border: 1.5px solid #F8BBD9;
      border-radius: 16px;
      padding: 14px 22px;
      margin-bottom: 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      box-shadow: 0 4px 18px rgba(194,24,91,0.08);
      cursor: pointer;
      transition: all 0.25s;
    }
    .assistant-hub-callout:hover {
      border-color: #C2185B;
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(194,24,91,0.15);
    }

    @media (max-width: 960px) {
      .action-hub-grid, .innovations-grid, .reviews-grid { grid-template-columns: 1fr; }
      .action-hub-section { margin-top: 24px; }
    }
  