:root {
  --bg-white: #e0f2fe; /* Sky Blue */
  --bg-light: #bae6fd; /* Darker Sky Blue */
  --text-black: #000000;
  --bg-charcoal: #111827;
  --accent-orange: #FF6B00; /* Original Orange for Header Btn */
  --accent-teal: #0d9488;
  --accent-indigo: #4f46e5;
  --accent-gradient: linear-gradient(135deg, var(--accent-teal), var(--accent-indigo));
  --font-main: 'Inter', sans-serif;
  --transition: 0.3s ease-in-out;
  --font-heading: 'Outfit', sans-serif;
}

body.dark-mode {
  --bg-white: #121212;
  --bg-light: #0a0a0a;
  --text-black: #ffffff;
  --bg-charcoal: #1a1a1a;
  --accent-teal: #2dd4bf;
  --accent-indigo: #818cf8;
}
body.dark-mode .hero-subtitle { color: #a3a3a3; }
body.dark-mode .logo-subtitle { color: #d1d5db; }
body.dark-mode .pillar-biz { color: var(--text-black); }
body.dark-mode .pillar-jobs { color: var(--text-black); }
body.dark-mode .step-card {
  color: var(--text-black);
  background-color: #1a1a1a;
  border: 1px solid #333;
}
body.dark-mode .btn-black {
  background-color: #2a2a2a;
  color: #ffffff;
}
body.dark-mode .form-control {
  background-color: #1a1a1a;
  color: #fff;
  border-color: #444;
}
body.dark-mode .shortcut-card {
  background-color: #1a1a1a;
  border-color: #333;
}

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

/* Hide Google Translate Toolbar completely */
iframe.goog-te-banner-frame { display: none !important; }
.goog-te-banner-frame { display: none !important; }
body { top: 0px !important; position: static !important; }
#goog-gt-tt, .goog-te-balloon-frame { display: none !important; }
.goog-text-highlight { background-color: transparent !important; box-shadow: none !important; border: none !important; }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-black);
  line-height: 1.6;
  padding-top: 100px; /* Compensate for fixed navbar */
}

h1, h2, h3, .logo-title {
  font-family: var(--font-heading);
  transition: background-color var(--transition), color var(--transition);
}

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

ul {
  list-style: none;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: none;
}
.btn-orange {
  background-color: var(--accent-orange);
  color: #ffffff;
}
.btn-orange:hover {
  background-color: #e66000;
}
.btn-gradient {
  background: var(--accent-gradient);
  color: #ffffff;
}
.btn-gradient:hover {
  filter: brightness(1.1);
  box-shadow: 0 5px 15px rgba(13, 148, 136, 0.4);
}
.btn-black {
  background-color: var(--bg-charcoal);
  color: var(--bg-white);
}
.btn-black:hover {
  background-color: var(--text-black);
}

/* Navbar */
.navbar {
  background-color: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  max-width: 1200px;
  width: calc(100% - 40px);
  color: #ffffff;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  max-width: none;
  margin: 0;
}
.logo-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.logo-title {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}
.logo-subtitle {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links li a {
  font-weight: 500;
  color: #ffffff;
  transition: var(--transition);
}
.nav-links li a:hover {
  color: var(--accent-orange);
}
.nav-home-btn {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
}
.nav-home-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: all 0.5s ease;
}
.nav-home-btn:hover::before {
  left: 100%;
}
.nav-home-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff !important;
}
.theme-toggle-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.theme-toggle-btn:hover {
  transform: rotate(15deg) scale(1.1);
  background: rgba(255, 255, 255, 0.2);
}
.burger-menu {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #ffffff;
}
.close-menu {
  display: none;
}

/* Hero Section */
.hero {
  background-color: var(--bg-white);
  padding: 80px 20px;
  text-align: center;
}
.hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}
.text-orange {
  color: var(--accent-orange);
}
.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--accent-indigo);
}
.hero-subtitle {
  font-size: 18px;
  color: #555;
  max-width: 600px;
  margin: 0 auto 40px;
}
.hero-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Direct WhatsApp Services Section */
.direct-services-section {
  padding: 80px 20px;
  background-color: var(--bg-light);
}

body.dark-mode .direct-services-section {
  background-color: var(--bg-charcoal);
}

.whatsapp-buttons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.wa-service-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 30px 20px;
  border-radius: 12px;
  text-decoration: none;
  color: #ffffff !important;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  line-height: 1.3;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  min-height: 120px;
}

.wa-service-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  color: #ffffff !important;
}

.wa-service-btn i {
  font-size: 32px;
}

/* Beautiful distinct colors for 7 buttons */
.color-1 { background: linear-gradient(135deg, #FF6B6B, #EE5D5D); }
.color-2 { background: linear-gradient(135deg, #4E65FF, #92EFFD); color: #111 !important; }
.color-2:hover { color: #111 !important; }
.color-3 { background: linear-gradient(135deg, #11998E, #38EF7D); }
.color-4 { background: linear-gradient(135deg, #8E2DE2, #4A00E0); }
.color-5 { background: linear-gradient(135deg, #FF9966, #FF5E62); }
.color-6 { background: linear-gradient(135deg, #00C9FF, #92FE9D); color: #111 !important; }
.color-6:hover { color: #111 !important; }
.color-7 { background: linear-gradient(135deg, #F093FB, #F5576C); }

@media (min-width: 1040px) {
  /* On large screens (3 per row), make the 7th button center in the 2nd slot of 3rd row */
  .whatsapp-buttons-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .wa-service-btn.color-7 {
    grid-column: 2 / 3;
  }
}

@media (max-width: 1039px) and (min-width: 768px) {
  /* On medium screens (2 per row), make the 7th button span both columns */
  .whatsapp-buttons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wa-service-btn.color-7 {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

/* How It Works Section */
.how-it-works {
  padding: 80px 20px;
  background-color: var(--bg-light);
  text-align: center;
}
.how-it-works h2 {
  font-size: 36px;
  margin-bottom: 50px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.step-card {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.15);
}
.step-icon {
  font-size: 40px;
  color: var(--accent-teal);
  margin-bottom: 20px;
}
.step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Professional Footer */
.footer {
  background-color: var(--bg-charcoal);
  color: #ffffff;
  padding: 80px 20px 0;
  margin-top: 50px;
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
  text-align: left;
}
.footer-description {
  color: #aaa;
  margin-bottom: 20px;
  max-width: 350px;
}
.social-links {
  display: flex;
  gap: 15px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-btn:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  transform: translateY(-3px);
}
.footer-col h3 {
  font-size: 20px;
  margin-bottom: 25px;
  color: white;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 15px;
}
.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--accent-orange);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 25px 20px;
  text-align: center;
  color: #888;
  font-size: 14px;
}

/* Floating Chat Widgets */
.floating-widgets {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}
.widget-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform var(--transition);
}
.widget-btn:hover {
  transform: scale(1.1);
}
.widget-whatsapp {
  background-color: #25D366;
}
.widget-telegram {
  background-color: #0088cc;
}

/* Contact Page Specifics */
.contact-header {
  text-align: center;
  padding: 60px 20px 20px;
}
.contact-header h1 {
  font-size: 36px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 20px 80px;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-shortcuts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.shortcut-card {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.15);
  text-decoration: none;
  color: var(--text-black);
  transition: transform var(--transition);
  display: block;
}
.shortcut-card:hover {
  border-color: var(--accent-orange);
  transform: translateY(-5px);
}
.shortcut-card i {
  font-size: 40px;
  margin-bottom: 15px;
}
.shortcut-card.whatsapp i { color: #25D366; }
.shortcut-card.telegram i { color: #0088cc; }

/* Contact Form */
.contact-form-container {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}
.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--text-black);
  border-radius: 4px;
  font-family: inherit;
  font-size: 16px;
  background-color: var(--bg-white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 1px var(--accent-orange);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.submit-btn {
  width: 100%;
  font-size: 16px;
}
/* --- 10 EXPERT UPGRADES --- */
/* 4. Custom Cursor */
.cursor-dot { width: 8px; height: 8px; background-color: var(--accent-orange); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); transition: opacity 0.3s ease; }
.cursor-outline { width: 40px; height: 40px; border: 2px solid rgba(255,107,0,0.5); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998; transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s, background-color 0.2s; }
.cursor-hover { width: 60px; height: 60px; background-color: rgba(255,107,0,0.1); border-color: transparent; }
@media (max-width: 768px) { .cursor-dot, .cursor-outline { display: none; } }

/* 7. Scrollbar & Selection */
::selection { background: var(--accent-orange); color: white; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-charcoal); }
::-webkit-scrollbar-thumb { background: var(--accent-orange); border-radius: 4px; }

/* 8. Page Transitions */
.page-transition { opacity: 1; transition: opacity 0.4s ease-out; }
.page-transition.fade-out { opacity: 0; }

/* 1. Scroll Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* 2. Mesh Gradient */
.hero { position: relative; overflow: hidden; }
.mesh-bg { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 50% 50%, rgba(255,107,0,0.08), transparent 60%), radial-gradient(circle at 80% 20%, rgba(17,24,39,0.05), transparent 50%); animation: spinMesh 20s linear infinite; z-index: 0; pointer-events: none; }
body.dark-mode .mesh-bg { background: radial-gradient(circle at 50% 50%, rgba(255,107,0,0.15), transparent 60%), radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03), transparent 50%); }
@keyframes spinMesh { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.hero .container { position: relative; z-index: 1; }

/* 9. Marquee */
.marquee-container { width: 100%; overflow: hidden; background: var(--bg-charcoal); color: var(--bg-white); padding: 15px 0; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; white-space: nowrap; }
.marquee-content { display: flex; gap: 50px; animation: scrollMarquee 20s linear infinite; font-weight: 700; font-size: 18px; text-transform: uppercase; letter-spacing: 2px; }
@keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
body.dark-mode .marquee-container { color: #fff; }

/* 5. 3D Hover/Tilt Effects */
.step-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.step-card:hover, .shortcut-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 15px 30px rgba(255,107,0,0.15); border-color: var(--accent-orange); z-index: 10; position: relative; }

/* 6. Floating Labels */
.floating { position: relative; margin-bottom: 25px; }
.floating label { position: absolute; left: 15px; top: 15px; font-size: 16px; color: #999; transition: 0.2s ease all; pointer-events: none; }
.floating input:focus ~ label, .floating input:not(:placeholder-shown) ~ label, .floating textarea:focus ~ label, .floating textarea:not(:placeholder-shown) ~ label, .floating select:focus ~ label, .floating select:valid ~ label { top: -10px; left: 10px; font-size: 12px; font-weight: 700; color: var(--accent-orange); background: var(--bg-white); padding: 0 5px; border-radius: 4px; }
body.dark-mode .floating input:focus ~ label, body.dark-mode .floating input:not(:placeholder-shown) ~ label, body.dark-mode .floating textarea:focus ~ label, body.dark-mode .floating textarea:not(:placeholder-shown) ~ label, body.dark-mode .floating select:focus ~ label, body.dark-mode .floating select:valid ~ label { background: #1a1a1a; }

/* --- NEW UPGRADES (FAQ) --- */
/* FAQ Section */
.faq-section { padding: 80px 20px; background-color: var(--bg-white); }
.faq-section h2 { text-align: center; font-size: 36px; margin-bottom: 50px; }
.faq-list { max-width: 800px; margin: 0 auto; background: var(--bg-white); border-radius: 12px; border: 1px solid rgba(0,0,0,0.15); box-shadow: 0 4px 6px rgba(0,0,0,0.02); overflow: hidden; }
body.dark-mode .faq-list { border-color: rgba(255,255,255,0.1); background: var(--bg-charcoal); }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.15); padding: 25px 20px; }
.faq-item:last-child { border-bottom: none; }
body.dark-mode .faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-question h4 { font-size: 20px; font-weight: 600; margin: 0; transition: color 0.2s; }
.faq-question i { font-size: 18px; color: var(--accent-orange); transition: transform 0.3s ease; }
.faq-question:hover h4 { color: var(--accent-orange); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { margin-top: 15px; color: #555; }
body.dark-mode .faq-answer p { color: #aaa; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-item.active .faq-question i { transform: rotate(45deg); }

/* Document & Legal Pages */
.document-container { padding: 150px 20px 80px; min-height: 60vh; }
.document-card {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--bg-white);
  padding: 60px 80px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  color: var(--text-black);
}
body.dark-mode .document-card {
  border-color: rgba(255, 255, 255, 0.1);
  background-color: #1a1a1a;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.document-card h1 { font-size: 42px; margin-bottom: 10px; font-weight: 900; letter-spacing: -1px; }
.document-card .last-updated {
  color: #888; font-size: 14px; margin-bottom: 40px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
}
.document-card h2 { font-size: 24px; margin: 40px 0 20px; color: var(--accent-orange); }
.document-card p, .document-card li { font-size: 16px; line-height: 1.8; margin-bottom: 20px; color: #555; }
body.dark-mode .document-card p, body.dark-mode .document-card li { color: #aaa; }
@media (max-width: 768px) {
  .document-card { padding: 40px 20px; }
  .document-card h1 { font-size: 32px; }
}

/* Mobile Responsiveness */
.mobile-toggle { display: none; }
.mobile-lang-btn { display: none; }

@media (max-width: 768px) {
  /* Navbar Mobile */
  .burger-menu {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--bg-charcoal);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right var(--transition);
    z-index: 1001;
  }
  .nav-links.nav-active {
    right: 0;
  }
  .nav-links li a {
    color: var(--bg-white);
    font-size: 20px;
  }
  .nav-links li a:hover {
    color: var(--accent-orange);
  }
  
  /* Close Menu Button inside nav-links */
  .close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    color: var(--bg-white);
    font-size: 24px;
    cursor: pointer;
    display: none;
  }
  .nav-links.nav-active .close-menu {
    display: block;
  }

  /* Other Sections */
  .hero-title {
    font-size: 36px;
  }
  .hero-cta {
    flex-direction: column;
  }
  .interactive-grid-section {
    display: flex;
    flex-direction: column;
  }
  
  .interactive-left {
    display: flex;
    flex-direction: column;
  }
  
  .grid-box {
    min-height: 180px;
  }
  
  .interactive-right {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background-color: var(--bg-white);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    justify-content: flex-start;
    padding-top: 100px;
  }
  
  .interactive-right.open {
    transform: translateX(0);
  }
  
  .mobile-back-btn {
    display: inline-block !important;
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    font-size: 16px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-container {
    padding: 20px;
  }
  
  .footer-container { grid-template-columns: 1fr; text-align: center; }
  .footer-description { margin: 0 auto 20px; }
  .social-links { justify-content: center; }
  
  .desktop-toggle { display: none !important; }
  .mobile-toggle {
    display: flex !important;
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10000;
    width: 60px;
    height: 60px;
    background: var(--bg-white);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid var(--text-black);
    font-size: 24px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--text-black);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .mobile-toggle-btn-lang {
    display: flex !important;
    position: fixed;
    bottom: 100px;
    left: 30px;
    z-index: 10000;
    width: 60px;
    height: 60px;
    background: var(--bg-white);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    border: 1px solid var(--text-black);
    font-size: 20px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--text-black);
    cursor: pointer;
    transition: all 0.3s ease;
  }
}
