/* ===================================================
   1. DESIGN TOKENS (Brand & Theme Variables)
   =================================================== */
:root {
  /* Light Mode (Default) */
  --lg-bg: #FFFFFF;
  --lg-card-bg: #F8FAFC;
  --lg-navy: #153A61;
  --lg-teal: #3D8C8D;
  --lg-text-main: #0A192F;
  --lg-text-muted: #64748B;
  --lg-border: rgba(15, 23, 42, 0.08);
  --lg-radius-card: 24px;
  --lg-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

:root[data-theme="dark"] {
  /* Dark Mode (Tekmino Style) */
  --lg-bg: #071018;
  --lg-card-bg: #0D1E2D;
  --lg-text-main: #FFFFFF;
  --lg-text-muted: #94A3B8;
  --lg-border: rgba(255, 255, 255, 0.08);
}

/* ===================================================
   2. GLOBAL BODY & TYPOGRAPHY
   =================================================== */
body {
  background-color: var(--lg-bg);
  color: var(--lg-text-main);
  transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--lg-text-main);
  transition: color 0.3s ease;
}

.lg-site-wrapper {
  padding-top: 80px; /* Offset for fixed header */
}

/* ===================================================
   3. HEADER & NAVIGATION (Glassmorphism)
   =================================================== */
.lg-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--lg-border);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--lg-transition);
}

:root[data-theme="dark"] .lg-navbar {
  background: rgba(7, 16, 24, 0.85);
}

.lg-nav-container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lg-brand-logo img {
  height: 42px;
  width: auto;
  display: block;
}

.lg-nav-list {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lg-nav-list li a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--lg-text-main);
  transition: color 0.3s ease;
}

.lg-nav-list li a:hover {
  color: var(--lg-teal);
}

/* Header Actions & Theme Toggle */
.lg-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lg-toggle-btn {
  background: transparent;
  border: 1px solid var(--lg-border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--lg-transition);
}

.lg-toggle-btn:hover {
  border-color: var(--lg-teal);
}

/* ===================================================
   4. LAUNCH HERO SECTION (Full Slide Crossfade)
   =================================================== */
.lg-hero-slider-root {
  position: relative;
  width: 100%;
  min-height: 92vh;
  overflow: hidden;
  background-color: #071018;
  display: flex;
}

.lg-hero-slide-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.2s ease-in-out, transform 4s linear;
  transform: scale(1.02); /* Slight zoom-out effect during fade */
  display: flex;
  align-items: center;
}

.lg-hero-slide-item.active {
  opacity: 1;
  z-index: 2;
  transform: scale(1);
}

/* Gradient Overlay for Text Readability */
.lg-hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 16, 24, 0.95) 0%, rgba(7, 16, 24, 0.6) 45%, transparent 100%),
              linear-gradient(0deg, #071018 0%, transparent 15%);
  z-index: 3;
}

.lg-hero-inner-container {
  position: relative;
  z-index: 4;
  width: 90%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 140px 0 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 80vh;
}

/* Left Content & Typography */
.lg-hero-content-block {
  max-width: 760px;
}

.lg-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(13, 30, 45, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(61, 140, 141, 0.4);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lg-teal);
  margin-bottom: 24px;
}

.lg-badge-icon {
  font-size: 0.9rem;
  color: var(--lg-teal);
}

.lg-hero-h1 {
  font-size: clamp(2.8rem, 5.2vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
  color: #FFFFFF;
  letter-spacing: -0.035em;
  margin: 0 0 22px 0;
}

.lg-hero-desc {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #E2E8F0;
  max-width: 580px;
  margin: 0 0 36px 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* CTAs */
.lg-hero-cta-group {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.lg-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--lg-teal);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(61, 140, 141, 0.3);
}

.lg-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(61, 140, 141, 0.5);
}

.lg-btn-arrow {
  transition: transform 0.3s ease;
}

.lg-btn-primary:hover .lg-btn-arrow {
  transform: translateX(4px);
}

.lg-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.lg-btn-secondary:hover {
  color: var(--lg-teal);
}

.lg-play-btn-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.lg-btn-secondary:hover .lg-play-btn-circle {
  border-color: var(--lg-teal);
  background: rgba(61, 140, 141, 0.15);
}

/* Floating Glass Cards */
.lg-hero-cards-wrapper {
  display: flex;
  gap: 20px;
  align-self: flex-end;
  margin-top: 40px;
}

.lg-hero-feature-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(13, 30, 45, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 20px 24px;
  min-width: 270px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.lg-hero-feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--lg-teal);
}

.lg-fc-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--lg-teal);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.lg-fc-text-box h4 {
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 4px 0;
}

.lg-fc-text-box p {
  color: #94A3B8;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.3;
}

/* ===================================================
   5. BENTO GRID SYSTEM
   =================================================== */
.lg-bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  width: 100%;
}

.lg-bento-card {
  background-color: var(--lg-card-bg);
  border: 1px solid var(--lg-border);
  border-radius: var(--lg-radius-card);
  padding: 36px 28px;
  transition: var(--lg-transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lg-bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--lg-teal);
  box-shadow: 0 12px 30px rgba(61, 140, 141, 0.18);
}

.lg-bento-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 12px 0;
}

.lg-bento-card p {
  color: var(--lg-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Global Teal Button Component */
.lg-btn-teal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--lg-teal);
  color: #FFFFFF !important;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--lg-transition);
}

.lg-btn-teal:hover {
  box-shadow: 0 0 20px rgba(61, 140, 141, 0.4);
  transform: translateY(-1px);
}

/* ===================================================
   6. GLOBAL FOOTER
   =================================================== */
.lg-site-footer {
  background-color: #071018;
  color: #94A3B8;
  padding: 70px 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lg-footer-container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

.lg-footer-logo img {
  height: 38px;
  width: auto;
  margin-bottom: 18px;
}

.lg-footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.lg-footer-title {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.lg-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lg-footer-links li {
  margin-bottom: 10px;
}

.lg-footer-links li a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.lg-footer-links li a:hover {
  color: var(--lg-teal);
}

.lg-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.lg-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
}

.lg-footer-bottom-container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.lg-legal-links a {
  color: #94A3B8;
  text-decoration: none;
  margin-left: 20px;
}

.lg-legal-links a:hover {
  color: var(--lg-teal);
}

/* ===================================================
   7. MEDIA QUERIES (Responsive)
   =================================================== */
@media (max-width: 992px) {
  .lg-hero-cards-wrapper {
    align-self: flex-start;
    flex-wrap: wrap;
    width: 100%;
  }
  .lg-hero-feature-card {
    min-width: 100%;
  }
  .lg-hero-inner-container {
    padding-top: 120px;
  }
}

@media (max-width: 768px) {
  .lg-main-nav { display: none; }
  .lg-footer-container { grid-template-columns: 1fr; }
  .lg-footer-bottom-container { flex-direction: column; gap: 12px; }
}



/* ===================================================
   8. CLIENT MARQUEE WIDGET (Full Width & Fallbacks)
   =================================================== */
.lg-marquee-fullwidth {
  /* Force full viewport width regardless of Elementor container */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 60px 0;
  border-top: 1px solid var(--lg-border);
  border-bottom: 1px solid var(--lg-border);
  background-color: var(--lg-bg);
}

.lg-marquee-header {
  text-align: center;
  margin-bottom: 40px;
}

.lg-marquee-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lg-text-muted);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lg-marquee-viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.lg-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: lg-marquee-scroll 25s linear infinite;
}

.lg-marquee-track:hover {
  animation-play-state: paused;
}

.lg-marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}

.lg-marquee-item img {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.lg-marquee-item img:hover {
  opacity: 1 !important;
  filter: grayscale(0%) !important;
}

/* Fallback Text Logo Styling */
.lg-text-logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--lg-text-muted);
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.lg-marquee-item:hover .lg-text-logo {
  color: var(--lg-teal);
}

@keyframes lg-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .lg-marquee-fullwidth {
    padding: 40px 0;
  }
  .lg-marquee-item {
    padding: 0 25px;
  }
  .lg-marquee-header {
    margin-bottom: 24px;
  }
  .lg-text-logo {
    font-size: 1.25rem;
  }
}

/* ===================================================
   9. ABOUT WIDGET (MODERN 4-QUADRANT GRID)
   =================================================== */
.lg-about-modern-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 40px 60px;
  width: 100%;
}

/* Quadrant 1: Top Left (Title) */
.lg-at-top-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.lg-about-subtitle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.lg-about-line {
  width: 30px;
  height: 2px;
  background-color: var(--lg-teal);
}

.lg-about-h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}

/* Quadrant 2: Top Right (Desc, Bullets, Badge) */
.lg-at-top-right {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: flex-start;
}

.lg-at-tr-content {
  display: flex;
  flex-direction: column;
}

.lg-about-p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--lg-text-muted);
  margin: 0 0 24px 0;
}

.lg-about-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lg-about-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--lg-text-main);
}

.lg-about-bullet i {
  font-size: 1.2rem;
}

.lg-circle-badge {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: #fff;
  line-height: 1.2;
  padding: 15px;
  animation: lg-spin-slow 15s linear infinite;
}

@keyframes lg-spin-slow {
  100% { transform: rotate(360deg); }
}

/* Quadrant 3: Bottom Left (Image) */
.lg-at-bottom-left {
  width: 100%;
}

.lg-at-main-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

/* Quadrant 4: Bottom Right (Dark Stats) */
.lg-at-bottom-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.lg-stat-card {
  background-color: var(--lg-card-bg);
  border: 1px solid var(--lg-border);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lg-stat-val {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.lg-stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lg-text-muted);
}

/* Responsive Rules */
@media (max-width: 992px) {
  .lg-about-modern-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lg-at-top-right {
    grid-template-columns: 1fr;
  }
  .lg-circle-badge {
    display: none;
  }
}


/* ===================================================
   10. PROCESS STEPS WIDGET
   =================================================== */
.lg-process-section {
  width: 100%;
  padding: 40px 0;
}

.lg-process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.lg-process-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--lg-teal);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lg-process-h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}

.lg-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.lg-process-card {
  background-color: rgba(13, 30, 45, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 32px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.lg-process-card:hover {
  transform: translateY(-5px);
  border-color: var(--lg-teal);
}

.lg-process-icon {
  width: 56px;
  height: 56px;
  background-color: var(--lg-teal);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.lg-process-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.lg-process-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
}

.lg-process-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--lg-text-muted);
  margin: 0;
}

@media (max-width: 992px) {
  .lg-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .lg-process-grid {
    grid-template-columns: 1fr;
  }
  .lg-process-header {
    margin-bottom: 40px;
  }
}


/* ===================================================
   11. SERVICES TABS WIDGET
   =================================================== */
.lg-services-tabs-section {
  width: 100%;
  padding: 60px 0;
}

.lg-tabs-header {
  margin-bottom: 40px;
}

.lg-tabs-subtitle {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--lg-teal);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.lg-tabs-h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
}

/* Tab Navigation */
.lg-tabs-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.lg-tabs-nav::-webkit-scrollbar { display: none; }

.lg-tab-btn {
  background: transparent;
  border: 1px solid transparent;
  border-bottom: 3px solid transparent;
  color: var(--lg-text-muted);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 16px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.lg-tab-btn:hover {
  color: #fff;
}

.lg-tab-btn.active {
  color: var(--lg-teal);
  border-bottom-color: var(--lg-teal);
  background-color: rgba(61, 140, 141, 0.1);
  border-radius: 8px 8px 0 0;
}

/* Tab Content Box */
.lg-tabs-content-wrapper {
  background-color: var(--lg-card-bg);
  border: 1px solid var(--lg-border);
  border-radius: 24px;
  overflow: hidden;
}

.lg-tab-pane {
  display: none;
  opacity: 0;
  animation: lg-fade-in 0.4s ease forwards;
}

.lg-tab-pane.active {
  display: block;
}

@keyframes lg-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Inner Grid */
.lg-tab-pane-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.lg-tab-pane-info {
  padding: 60px;
}

.lg-tab-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(61, 140, 141, 0.1);
  color: var(--lg-teal);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
}

.lg-tab-pane-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.lg-tab-pane-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--lg-text-muted);
  margin: 0 0 32px 0;
}

.lg-tab-btn-cta {
  padding: 14px 32px;
}

/* Right Image */
.lg-tab-pane-visual {
  height: 100%;
}

.lg-tab-pane-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
}

/* Responsive */
@media (max-width: 992px) {
  .lg-tab-pane-grid {
    grid-template-columns: 1fr;
  }
  .lg-tab-pane-info {
    padding: 40px;
  }
  .lg-tab-pane-visual img {
    min-height: 300px;
  }
}

/* Custom Logo Global Sizing */
.lg-brand-logo img,
.lg-footer-logo img,
.custom-logo {
  height: 42px;
  width: auto;
  display: block;
}

.lg-brand-logo h3,
.lg-footer-logo h3 {
  margin: 0;
  font-weight: 800;
  color: var(--lg-text-main);
}

/* Polished Theme Toggle Button */
.lg-toggle-btn {
  background: transparent;
  border: 1px solid var(--lg-border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--lg-text-main);
  transition: var(--lg-transition);
}

.lg-toggle-btn:hover {
  border-color: var(--lg-teal);
  color: var(--lg-teal);
  background: rgba(61, 140, 141, 0.1);
}

/* Footer specific icons */
.lg-contact-icon i {
  font-size: 1.1rem;
  color: var(--lg-teal);
}