@keyframes slideIn{0%{transform:translateY(40px) scale(.95);opacity:0}to{transform:translateY(0) scale(1);opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes messageSlideIn{0%{transform:translateY(12px);opacity:0}to{transform:translateY(0);opacity:1}}@keyframes typing{0%,60%,to{transform:translateY(0)}30%{transform:translateY(-6px)}}@keyframes shimmer{0%{background-position:-200%}to{background-position:200%}}.chatbot-overlay{position:fixed;inset:0;background:rgba(10,15,30,.35);backdrop-filter:blur(6px);z-index:9999;opacity:0;visibility:hidden;transition:all .3s ease}.chatbot-overlay--open{opacity:1;visibility:visible;animation:fadeIn .3s ease-out}.chatbot{position:fixed;bottom:24px;right:24px;width:400px;height:calc(100vh - 80px);max-height:680px;background:#fff;border-radius:20px;box-shadow:0 32px 80px -16px rgba(10,15,30,.28),0 0 0 1px rgba(10,15,30,.06);display:flex;flex-direction:column;overflow:hidden;transform:translateY(40px) scale(.95);opacity:0;pointer-events:none;transition:transform .35s cubic-bezier(.22,1,.36,1),opacity .35s cubic-bezier(.22,1,.36,1)}.chatbot--open{transform:translateY(0) scale(1);opacity:1;pointer-events:auto;animation:slideIn .35s cubic-bezier(.22,1,.36,1)}@media(max-width:480px){.chatbot{width:100dvw;height:100dvh;max-height:none;bottom:0;right:0;left:0;border-radius:0}}.chatbot__header{background:#0d1a2e;padding:16px 16px 14px;border-radius:20px 20px 0 0;display:flex;align-items:center;gap:8px;flex-shrink:0;position:relative;overflow:hidden}.chatbot__header:before{content:"";position:absolute;inset:0;background-image:linear-gradient(hsla(0,0%,100%,.025) 1px,transparent 0),linear-gradient(90deg,hsla(0,0%,100%,.025) 1px,transparent 0);background-size:28px 28px;pointer-events:none}@media(max-width:480px){.chatbot__header{border-radius:0}}.chatbot__header-back{background:hsla(0,0%,100%,.08);border:none;color:hsla(0,0%,100%,.7);width:32px;height:32px;display:flex;align-items:center;justify-content:center;cursor:pointer;flex-shrink:0;padding:0;border-radius:8px;position:relative;z-index:1;transition:background .2s}.chatbot__header-back:hover{background:hsla(0,0%,100%,.14)}.chatbot__header-agent{display:flex;align-items:center;gap:10px;flex:1;position:relative;z-index:1}.chatbot__avatar-img{width:38px;height:38px;border-radius:50%;object-fit:cover;flex-shrink:0;border:2px solid rgba(244,179,99,.4)}.chatbot__header-info{display:flex;flex-direction:column;gap:1px}.chatbot__header-name-row{display:flex;align-items:center;gap:6px}.chatbot__header-name{font-size:14px;font-weight:600;color:#fff;letter-spacing:-.01em}.chatbot__header-status-row{display:flex;align-items:center;gap:5px}.chatbot__status-dot{width:7px;height:7px;background:#10b981;border-radius:50%;display:inline-block;position:relative;top:0;left:0}.chatbot__status-dot--offline{background:#f4ce00}.chatbot__header-subtitle,.chatbot__status-label{font-size:11px;color:hsla(0,0%,100%,.5)}.chatbot__header-actions{display:flex;align-items:center;gap:4px;flex-shrink:0;position:relative;z-index:1}.chatbot__header-btn{background:hsla(0,0%,100%,.08);border:none;font-size:16px;color:hsla(0,0%,100%,.7);width:30px;height:30px;display:flex;align-items:center;justify-content:center;cursor:pointer;border-radius:8px;padding:0;line-height:1;transition:background .2s}.chatbot__header-btn:hover{background:hsla(0,0%,100%,.14)}.chatbot__messages{flex:1;overflow-y:auto;padding:16px;display:flex;flex-direction:column;gap:10px;background:#f7f8fb;scrollbar-width:none}.chatbot__messages::-webkit-scrollbar{display:none}.chatbot__system-event{display:flex;align-items:center;justify-content:center;gap:6px;font-size:11px;color:#8a96a8;margin:4px 0}.chatbot__system-event-avatar{width:18px;height:18px;border-radius:50%;object-fit:cover}.chatbot__message{display:flex;animation:messageSlideIn .25s ease-out}.chatbot__message--user{flex-direction:row-reverse;justify-content:flex-start}.chatbot__message--bot{align-items:flex-start;gap:8px}.chatbot__bubble--user{background:#f4b363;border-radius:18px 18px 4px 18px;font-weight:500;box-shadow:0 2px 8px rgba(244,179,99,.3)}.chatbot__bubble--bot,.chatbot__bubble--user{color:#0a0f1e;padding:10px 14px;max-width:240px;font-size:14px;line-height:1.55}.chatbot__bubble--bot{background:#fff;border-radius:18px 18px 18px 4px;border:1px solid rgba(10,15,30,.08);box-shadow:0 1px 4px rgba(10,15,30,.05)}.chatbot__msg-avatar{width:26px;height:26px;border-radius:50%;object-fit:cover;flex-shrink:0;margin-top:2px;border:1.5px solid rgba(244,179,99,.3)}.chatbot__bubble-wrapper{display:flex;flex-direction:column}.chatbot__msg-meta{font-size:10px;color:#8a96a8;margin-top:4px;padding-left:2px}.chatbot__typing{display:flex;gap:4px;padding:4px 0}.chatbot__typing span{width:7px;height:7px;border-radius:50%;background:#8a96a8;animation:typing 1.4s ease-in-out infinite}.chatbot__typing span:first-child{animation-delay:-.32s}.chatbot__typing span:nth-child(2){animation-delay:-.16s}.chatbot__typing span:nth-child(3){animation-delay:0s}.chatbot__quick-actions{padding:0 16px 12px;animation:messageSlideIn .4s ease-out .2s both}.chatbot__quick-actions-title{font-size:12px;color:#8a96a8;margin-bottom:8px;font-weight:500;text-transform:uppercase;letter-spacing:.08em}.chatbot__quick-actions-grid{display:grid;grid-template-columns:1fr 1fr;gap:7px}.chatbot__quick-action{background:#fff;border:1px solid rgba(10,15,30,.08);border-radius:10px;padding:9px 12px;font-size:12px;color:#0a0f1e;cursor:pointer;font-weight:500;transition:all .18s ease;text-align:left;line-height:1.35}.chatbot__quick-action:hover{background:#fff8ef;border-color:rgba(244,179,99,.6);transform:translateY(-1px);box-shadow:0 4px 12px rgba(244,179,99,.15)}.chatbot__quick-action:active{transform:translateY(0)}.chatbot__input-container{padding:10px 12px 14px;background:#fff;border-top:1px solid rgba(10,15,30,.08);border-radius:0 0 20px 20px;flex-shrink:0}@media(max-width:480px){.chatbot__input-container{border-radius:0}}.chatbot__input-box{border:1.5px solid rgba(10,15,30,.08);border-radius:14px;padding:10px 12px;background:#f7f8fb;transition:border-color .2s}.chatbot__input-box:focus-within{border-color:rgba(244,179,99,.7);background:#fff}.chatbot__input{width:100%;border:none;outline:none;resize:none;font-size:14px;color:#0a0f1e;background:transparent;font-family:inherit;min-height:22px}.chatbot__input::placeholder{color:#8a96a8}.chatbot__toolbar{display:flex;align-items:center;justify-content:flex-end;margin-top:8px}.chatbot__send{width:30px;height:30px;border-radius:50%;border:none;background:rgba(10,15,30,.15);color:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .2s,transform .15s;flex-shrink:0}.chatbot__send--active{background:#f4b363;color:#0a0f1e;box-shadow:0 2px 8px rgba(244,179,99,.4)}.chatbot__send--active:hover{background:#e09b47;transform:scale(1.08)}.chatbot__send:disabled{cursor:not-allowed}@keyframes popupSlideIn{0%{transform:translateY(12px);opacity:0}to{transform:translateY(0);opacity:1}}@keyframes float{0%,to{transform:translateY(0)}50%{transform:translateY(-6px)}}@keyframes pulse{0%{transform:scale(1);opacity:1}to{transform:scale(1.4);opacity:0}}@keyframes bounce{0%,20%,53%,80%,to{transform:translateY(0)}40%,43%{transform:translateY(-8px)}70%{transform:translateY(-4px)}90%{transform:translateY(-2px)}}@keyframes slideOut{0%{transform:scale(1);opacity:1}to{transform:scale(.8);opacity:0}}.chatbot-popup{position:fixed;bottom:100px;right:24px;background:#fff;border-radius:16px;box-shadow:0 8px 30px rgba(0,0,0,.15);padding:14px 36px 14px 16px;display:flex;align-items:center;gap:12px;cursor:pointer;z-index:9997;max-width:280px;animation:popupSlideIn .35s ease-out}.chatbot-popup__avatar{width:44px;height:44px;border-radius:50%;object-fit:cover;flex-shrink:0;border:2px solid #ce8a37}.chatbot-popup__body{display:flex;flex-direction:column;gap:2px}.chatbot-popup__message{margin:0;font-size:14px;font-weight:500;color:#1e293b;line-height:1.4}.chatbot-popup__meta{font-size:12px;color:#94a3b8}.chatbot-popup__close{position:absolute;top:8px;right:8px;width:20px;height:20px;background:rgba(0,0,0,.08);border:none;border-radius:50%;display:none;align-items:center;justify-content:center;font-size:14px;line-height:1;color:#64748b;cursor:pointer;padding:0;transition:background .2s ease}.chatbot-popup__close:hover{background:rgba(0,0,0,.18)}.chatbot-popup:hover .chatbot-popup__close{display:flex}@media(max-width:480px){.chatbot-popup{right:20px;bottom:90px;max-width:calc(100vw - 40px)}}.chatbot-trigger{position:fixed;bottom:24px;right:24px;width:64px;height:64px;background:#ce8a37;border:none;border-radius:50%;box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04);cursor:pointer;z-index:9998;display:flex;align-items:center;justify-content:center;animation:float 3s ease-in-out infinite;transition:transform .3s ease,box-shadow .3s ease}.chatbot-trigger:hover{transform:scale(1.1) translateY(-2px);box-shadow:0 25px 35px -5px rgba(0,0,0,.15),0 15px 15px -5px rgba(0,0,0,.08)}.chatbot-trigger--hidden{animation:slideOut .3s cubic-bezier(.4,0,.2,1) forwards}.chatbot-trigger__icon{position:relative;z-index:2;display:flex;align-items:center;justify-content:center}.chatbot-trigger__pulse{position:absolute;width:100%;height:100%;border-radius:50%;background:#ce8a37;animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite;z-index:1}.chatbot-trigger__notification{position:absolute;top:-4px;right:-4px;width:20px;height:20px;background:#e53e3e;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:700;color:#fff;box-shadow:0 2px 8px rgba(0,0,0,.15);border:2px solid #fff;z-index:3;animation:bounce 2s infinite}@media(max-width:480px){.chatbot-trigger{bottom:20px;right:20px;width:56px;height:56px}.chatbot-trigger__notification{width:20px;height:20px;font-size:10px;top:-2px;right:-2px}}.aboutUsSection_aboutUsSection__Nl8RT{display:flex;align-items:center;justify-content:space-between;padding:4rem 2rem;background-color:#fff}.aboutUsSection_aboutUsSection__Nl8RT .aboutUsSection_imageContainer__LWBXT{flex:0 0 50%;max-width:50%;margin-right:2rem}.aboutUsSection_aboutUsSection__Nl8RT .aboutUsSection_imageContainer__LWBXT .aboutUsSection_img__6N59Q{width:100%;height:auto;object-fit:cover}.aboutUsSection_aboutUsSection__Nl8RT .aboutUsSection_content__Dl7u2{flex:1;padding:1rem}.aboutUsSection_aboutUsSection__Nl8RT .aboutUsSection_content__Dl7u2 .aboutUsSection_title__1ZjUP{font-size:2rem;color:#f4b363;margin-bottom:.5rem}.aboutUsSection_aboutUsSection__Nl8RT .aboutUsSection_content__Dl7u2 .aboutUsSection_subtitle__aYzGN{font-size:1.5rem;color:#000;margin-bottom:1rem}.aboutUsSection_aboutUsSection__Nl8RT .aboutUsSection_content__Dl7u2 .aboutUsSection_description__WQuTY{font-size:1rem;color:#000;margin-bottom:1.5rem;font-weight:lighter}@media(min-width:640px)and (max-width:1024px){.aboutUsSection_aboutUsSection__Nl8RT{flex-direction:column;align-items:center;text-align:center}.aboutUsSection_aboutUsSection__Nl8RT .aboutUsSection_imageContainer__LWBXT{flex:1 1 100%;max-width:100%;margin:0 0 2rem}}@media(max-width:640px){.aboutUsSection_aboutUsSection__Nl8RT{flex-direction:column;padding:2rem 1.3rem}.aboutUsSection_aboutUsSection__Nl8RT .aboutUsSection_imageContainer__LWBXT{display:none}.aboutUsSection_aboutUsSection__Nl8RT .aboutUsSection_content__Dl7u2{padding:1rem;text-align:center}}