.elementor-33 .elementor-element.elementor-element-ee9fe6a{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-9ced933 *//* ---------- Global TOTO Shell Styles ---------- */

/* Header layout */
.toto-header {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.toto-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.toto-logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg,#b91c1c,#7f1d1d);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:700;
  font-size:14px;
}

.toto-logo-text {
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.toto-logo-text .brand {
  font-size:18px;
  font-weight:700;
  color:#f9fafb;
}
.toto-logo-text .tagline {
  font-size:11px;
  color:#e5e7eb;
  opacity:0.8;
}

/* Menu */
.toto-nav {
  display:flex;
  align-items:center;
  gap:18px;
}

.toto-nav a {
  font-size:14px;
  text-decoration:none;
  color:#e5e7eb;
  opacity:0.85;
  position:relative;
}
.toto-nav a:hover {
  opacity:1;
}
.toto-nav a::after {
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:2px;
  border-radius:999px;
  background:#f97316;
  transition:width .25s ease;
}
.toto-nav a:hover::after {
  width:100%;
}

/* Header CTAs */
.toto-header-cta {
  display:flex;
  align-items:center;
  gap:10px;
}

.toto-chip {
  padding:6px 10px;
  border-radius:999px;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.8px;
  background:rgba(15,23,42,0.85);
  color:#e5e7eb;
}

.toto-btn-outline,
.toto-btn-primary {
  border-radius:999px;
  padding:8px 16px;
  font-size:13px;
  border:1px solid #f97316;
  background:transparent;
  color:#f97316;
  text-decoration:none;
  font-weight:600;
}
.toto-btn-primary {
  background:linear-gradient(135deg,#b91c1c,#f97316);
  border-color:transparent;
  color:#fff;
}
.toto-btn-outline:hover,
.toto-btn-primary:hover {
  filter:brightness(1.05);
}

/* Responsive header */
@media (max-width:768px){
  .toto-header {
    padding:10px 14px;
    flex-wrap:wrap;
  }
  .toto-nav {
    display:none; /* You can enable and convert to hamburger later */
  }
}

/* ---------- Footer ---------- */

.toto-footer {
  width:100%;
  background:#020617;
  border-top:1px solid rgba(148,163,184,0.25);
  padding:20px 18px 80px; /* extra bottom for mobile bar */
  color:#e5e7eb;
}
.toto-footer-inner {
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:24px;
}
.toto-footer h4 {
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:8px;
  color:#f97316;
}
.toto-footer a {
  color:#e5e7eb;
  font-size:13px;
  text-decoration:none;
  opacity:0.85;
}
.toto-footer a:hover { opacity:1; }

.toto-footer-small {
  margin-top:18px;
  padding-top:10px;
  border-top:1px solid rgba(15,23,42,0.8);
  font-size:11px;
  opacity:0.8;
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:8px;
}

/* Responsive footer */
@media (max-width:768px){
  .toto-footer-inner {
    grid-template-columns:1fr;
  }
}

/* Bottom Nav Base */
.toto-mobile-nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 70px;
  background: rgba(12, 20, 35, 0.85);
  backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 9999;
}

/* Normal nav items */
.toto-mobile-nav .nav-item {
  flex: 1;
  text-align: center;
  font-size: 0.74rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--tb-text, #ffffff);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: 0.25s;
}

.toto-mobile-nav .icon {
  font-size: 1.45rem;
}

/* Hover / active */
.toto-mobile-nav .nav-item:hover,
.toto-mobile-nav .nav-item.active {
  color: #3db6ff;
  transform: translateY(-2px);
}

/* Big Center Floating Button */
.toto-mobile-nav .nav-center-btn {
  position: absolute;
  top: -28px;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #ff8a00, #ff4d00);
  color: #fff;
  border-radius: 50%;
  font-size: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 5px 18px rgba(255, 100, 0, 0.45);
  transition: 0.25s ease;
}

.toto-mobile-nav .nav-center-btn:hover {
  transform: scale(1.09);
}

/* Ripple Animation */
.toto-mobile-nav a:active {
  animation: ripple 0.45s forwards linear;
}
@keyframes ripple {
  0% { opacity: 0.6; transform: scale(0.98); }
  100% { opacity: 1; transform: scale(1); }
}

/* Hide on desktop */
@media (min-width: 900px) {
  .toto-mobile-nav { display: none; }
}

/* Light Mode */
body.light-mode .toto-mobile-nav {
  background: rgba(240, 245, 255, 0.8);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
body.light-mode .toto-mobile-nav .nav-item { color: #001f3f; }
body.light-mode .toto-mobile-nav .nav-item.active { color: #0066ff; }

/* Floating Icon */
#toto-chatbot-btn {
  position: fixed;
  bottom: 80px;
  right: 18px;
  width: 62px;
  height: 62px;
  background: linear-gradient(145deg, #1e40af, #3b82f6);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  cursor: pointer;
  z-index: 999999;
  color: #fff;
  animation: pulse 2s infinite;
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.6);
}

/* Robot Glow Animation */
@keyframes pulse {
  0% { box-shadow: 0 0 10px rgba(59,130,246,.6); }
  50% { box-shadow: 0 0 22px rgba(59,130,246,1); }
  100% { box-shadow: 0 0 10px rgba(59,130,246,.6); }
}

/* Chat Box */
#toto-chatbox {
  position: fixed;
  bottom: 150px;
  right: 18px;
  width: 330px;
  max-width: 90vw;
  background: rgba(13, 23, 42, .88);
  border: 1px solid rgba(74, 222, 128, .32);
  border-radius: 18px;
  padding: 0;
  backdrop-filter: blur(12px);
  display: none;
  flex-direction: column;
  z-index: 999999;
  animation: fadeIn .3s ease;
}

/* Chat Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-header {
  background: rgba(0,0,0,.32);
  padding: 12px 16px;
  border-bottom: 1px solid rgba(74,222,128,.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #4ade80;
  border-radius: 18px 18px 0 0;
}

#toto-close-chat {
  background: none;
  border: none;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}

.chat-body {
  padding: 16px;
  color: #fff;
  font-size: 15px;
}

.chat-body p {
  margin-top: 0;
  opacity: .9;
}

.chat-btn {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  background: rgba(33, 197, 94, .2);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, .4);
  text-decoration: none;
  transition: 0.25s;
}
.chat-btn:hover {
  background: rgba(34,197,94,.4);
}

/* ===============================
   TOTO BATTERY – APK DOWNLOAD BTN
   =============================== */

.toto-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 22px;
    margin-top: 14px;

    text-decoration: none !important;
    border-radius: 999px;

    /* TB Logo Green Gradient */
    background: linear-gradient(
        135deg,
        #22c55e 0%,
        #16a34a 45%,
        #0f766e 100%
    );

    color: #ffffff !important;
    font-weight: 600;
    font-size: 14px;

    box-shadow:
        0 0 18px rgba(34, 197, 94, 0.45),
        inset 0 0 0 1px rgba(255,255,255,0.18);

    transition: all 0.35s ease;
}

/* Icon circle */
.toto-download-btn .toto-btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Text */
.toto-download-btn .toto-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.toto-download-btn small {
    font-size: 11px;
    opacity: 0.85;
}

/* Hover – premium glow */
.toto-download-btn:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow:
        0 0 34px rgba(34, 197, 94, 0.8),
        inset 0 0 0 1px rgba(255,255,255,0.3);
}

/* Mobile full width */
@media (max-width: 768px) {
    .toto-download-btn {
        width: 65%;
        justify-content: center;
    }
}/* End custom CSS */
/* Start custom CSS *//* ===================== TOTO FOOTER ===================== */
.toto-footer {
  background: #020617;
  border-top: 1px solid rgba(148,163,184,0.35);
  color: #e5e7eb;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
}

.toto-footer-main {
  max-width: 1150px;
  margin: 0 auto;
  padding: 26px 16px 20px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 24px;
}

/* Short, compact height on desktop */
@media (min-width: 992px) {
  .toto-footer-main {
    padding-top: 24px;
    padding-bottom: 18px;
  }
}

/* Brand block */
.footer-brand .footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.footer-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 0%, #22c55e, #0f172a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #ecfeff;
}
.footer-logo-text .brand {
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 14px;
}
.footer-logo-text .tagline {
  font-size: 12px;
  color: #9ca3af;
}

.footer-desc {
  margin: 6px 0 10px;
  font-size: 13px;
  color: #9ca3af;
  max-width: 340px;
}

/* Powered by */
.footer-powered {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}
.footer-powered .powered-label {
  color: #9ca3af;
}
.footer-powered .powered-chip {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.7);
  background: rgba(15,23,42,0.9);
  font-weight: 500;
}

/* Columns generic */
.footer-col h4 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: #e5e7eb;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 6px;
}
.footer-col ul li a {
  font-size: 13px;
  color: #9ca3af;
  text-decoration: none;
  transition: .2s;
}
.footer-col ul li a:hover {
  color: #22c55e;
}

/* CTA column */
.footer-cta-text {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 10px;
}
.footer-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 8px;
  padding: 9px 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: .2s;
}
.footer-btn.primary {
  background: linear-gradient(90deg,#22c55e,#4ade80);
  color: #020617;
}
.footer-btn.primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.footer-btn.ghost {
  background: transparent;
  border: 1px solid rgba(148,163,184,0.7);
  color: #e5e7eb;
}
.footer-btn.ghost:hover {
  border-color: #22c55e;
  color: #bbf7d0;
}

/* Small pills */
.footer-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.footer-pill-row .pill {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,0.95);
  border: 1px solid rgba(148,163,184,0.5);
}

/* Bottom strip */
.toto-footer-bottom {
  border-top: 1px solid rgba(30,64,175,0.5);
  background: #020617;
  font-size: 11px;
  color: #6b7280;
  padding: 8px 16px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.toto-footer-bottom .footer-bottom-links {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.toto-footer-bottom a {
  color: #9ca3af;
  text-decoration: none;
}
.toto-footer-bottom a:hover {
  color: #e5e7eb;
}

/* ========== Responsive footer ========== */
@media (max-width: 900px) {
  .toto-footer-main {
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .toto-footer-main {
    grid-template-columns: minmax(0,1fr);
    gap: 18px;
  }
  .footer-brand .footer-desc {
    max-width: 100%;
  }
  .toto-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
/* ===== Reduce final footer spacing ===== */
.toto-footer-bottom {
  padding-top: 6px !important;
  padding-bottom: 4px !important;
  margin-bottom: 0 !important;
  line-height: 1.25;
}

/* Remove padding from footer container bottom */
.toto-footer {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* Ensure no space from theme */
#page,
.site-content,
.ast-container,
.elementor,
body,
html {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}/* End custom CSS */