.inquire-btn {
  background: greenyellow; 
  color: #000000;   
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: 600;    
  border-radius: var(--radius-md);
  border: 2px solid greenyellow; 
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em greenyellow; 
  overflow: hidden;
  position: relative;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
}

.inquire-btn .icon {
  background: #000000;  
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: var(--radius-sm);
  box-shadow: 0.1em 0.1em 0.6em 0.2em greenyellow;  
  right: 0.3em;
  transition: all 0.3s;
}

.inquire-btn:hover .icon {
  width: calc(100% - 0.6em);
}


.inquire-btn .icon i {
  font-size: 1.1em;
  transition: transform 0.3s;
  color: greenyellow; 
}

.inquire-btn:hover .icon i {
  transform: translateX(0.1em);
}

.inquire-btn:active .icon {
  transform: scale(0.95);
}

/* ==========================================================================
 BUTONES  NA LUMALAPAD
========================================================================== */
.btn-fat {
    position: relative;  
    display: block;  
    width: 100%;  
    padding: 1rem;  
    background: rgba(255, 255, 255, 0.05); 
    color: #ffffff !important; 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: var(--radius-sm); 
    font-weight: 900;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;
    text-align: center;   
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    overflow: visible;  
    transition: background 0.3s, color 0.3s, border-color 0.3s;
    z-index: 1;
}

.btn-fat::before {
    content: '';
    position: absolute;
    inset: 0;               
    border: 1px solid rgba(255, 255, 255, 0.4);  
    border-radius: var(--radius-sm);
    background-color: transparent;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s;
    pointer-events: none;    
}

.btn-fat:hover::before {
    opacity: 0;
    transform: scale(0.7, 0.7);
}

.btn-fat::after {
    content: '';
    position: absolute;
    inset: 0;          
    opacity: 0;
    border: 1px solid #ffffff;  
    border-radius: var(--radius-sm);
    transform: scale(1.2, 1.2);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s;
    pointer-events: none;
    z-index: -1;
}

.btn-fat:hover::after {
    opacity: 1;
    transform: scale(1, 1);
}

.btn-fat:hover {
    background: rgba(255, 255, 255, 0.05); 
    color: #ffffff !important;   
    border-color: rgba(255, 255, 255, 0.3); 
}

/* ==========================================================================
 BUTONES  NI BIGSKY
========================================================================== */
.btn-bs-lime {
    position: relative;  
    display: block;
    /*width: 30%; */
    padding: 1rem;
    background: greenyellow;  
    color: #000000 !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;
    text-align: center; 
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    overflow: visible;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
    z-index: 1;
}

.btn-bs {
    position: relative;  
    display: inline-flex;       /* Changed from block to inline-flex */
    align-items: center;        /* Vertically centers text */
    justify-content: center;    /* Horizontally centers text */
    height: 46px;               /* Explicit height */
    padding: 0 24px;            /* Controlled horizontal padding only */
    background: rgba(255, 255, 255, 0.05); 
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center; 
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    overflow: visible;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
    z-index: 1;
    box-sizing: border-box;     /* Ensures border is included in the 46px height */
}

.btn-bs-buy {
    position: relative;  
    display: block;
    width: 100%; 
    padding: 1rem;
    background: #a3e635; 
    color: #000000 !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;
    text-align: center; 
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    overflow: visible;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
    z-index: 1;
}

.btn-bs-buy::before,
.btn-bs-lime::before,
.btn-bs::before {
    content: '';
    position: absolute;
    inset: 0;                
    border: 1px solid rgba(255, 255, 255, 0.4);  
    border-radius: var(--radius-sm);
    background-color: transparent;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s;
    pointer-events: none;   
    z-index: -1;
}

.btn-bs-buy::before,
.btn-bs-lime::before,
.btn-bs:hover::before {
    opacity: 0;
    transform: scale(0.7, 0.7);
}

.btn-bs-buy::after,
.btn-bs-lime::after,
.btn-bs::after {
    content: '';
    position: absolute;
    inset: 0;              
    opacity: 0;
    border: 1px solid #ffffff; 
    border-radius: var(--radius-sm);
    transform: scale(1.2, 1.2); 
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s;
    pointer-events: none;
    z-index: -1;
}

.btn-bs-buy:hover::after,
.btn-bs-lime:hover::after,
.btn-bs:hover::after {
    opacity: 1;
    transform: scale(1, 1);
}

.btn-bs-buy:hover  {
    background: #a3e635; 
    color: #000000 !important;   
    border-color: #a3e635; 
}
.btn-bs-lime:hover  {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff !important;   
    border-color: rgba(255, 255, 255, 0.3); 
}
.btn-bs:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff !important;   
    border-color: rgba(255, 255, 255, 0.3); 
}


/* ==========================================================================
 BUTONES  NI BIGSKY ARROW RIGHT - LEFT
========================================================================== */
.btn-bs-01 {
  position: relative;
  display: inline-flex;  
  align-items: center;
  justify-content: center; 
  height: 46px;  
  gap: 4px;
  padding: 0 36px;   
  border: 2px solid greenyellow;
  background-color: transparent;
  border-radius: var(--radius-sm);
  color: greenyellow;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  box-sizing: border-box; 
}


.btn-bs-01 i {
  position: absolute;
  font-size: 20px;
  color: greenyellow; 
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-bs-01 .arr-1 {
  right: 16px;
}

.btn-bs-01 .arr-2 {
  left: -25%;
}

.btn-bs-01 .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg); 
  width: 20px;
  height: 20px;
  background-color: greenyellow;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-bs-01 .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-bs-01:hover {
  color: #000000;
 border-color: greenyellow;
}

.btn-bs-01:hover .arr-1 {
  right: -25%;
}

.btn-bs-01:hover .arr-2 {
  left: 16px;
}

.btn-bs-01:hover .text {
  transform: translateX(12px);
}

.btn-bs-01:hover i {
  color: #000000;
}

.btn-bs-01:active {
  scale: 0.95;
}

.btn-bs-01:hover .circle {
  transform: translate(-50%, -50%) rotate(45deg);
  width: 300px;
  height: 300px;
  opacity: 1;
}



/* ==========================================================================
 BUTONES  NI MENUDO
========================================================================== */
.menuton {
  position: relative;
  margin: auto;
  padding: 12px 18px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
}

.menuton:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-radius: var(--radius-full);
  background: #019934;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
}

.menuton span {
  position: relative;
  font-family: "Ubuntu", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a !important;
}

.menuton svg {
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #000;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.menuton:hover:before {
  width: 100%;
  background: #019934;
}

.menuton:hover svg {
  transform: translateX(0);
}

.menuton:active {
  transform: scale(0.95);
}




/* ==========================================================================
 LUNCH BUTONES
========================================================================== */
.btn-launch {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1.2rem !important;
  color: black;
  border: 2px solid greenyellow !important;
  /*background: linear-gradient(to right, #24243e, #1a1a1a, greenyellow);*/
  border: none;
  letter-spacing: 0.05em;
  border-radius: var(--radius-lg);
}
.btn-launch:hover {
    background: greenyellow;
}
.btn-launch i {
  margin-right: 3px;
  transform: rotate(0deg);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.btn-launch span {
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.btn-launch:hover i {
  transform: translateX(5px) rotate(-45deg);
}

.btn-launch:hover span {
  transform: translateX(7px);
}

/* ==========================================================================
 KONTAK BUTONES
========================================================================== */
.btn-kontak {
  position: relative;
  width: 150px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  border: 2px solid greenyellow;
  background-color: transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.btn-kontak, .btn-kontak .button__icon, .btn-kontak .button__text {
  transition: all 0.3s;
}
.btn-kontak .button__text {
  transform: translateX(15px);
  color: #000 !important;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
}
.btn-kontak .button__icon {
  position: absolute;
  transform: translateX(110px);
  height: 100%;
  width: 50px;
  background-color: greenyellow;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.btn-kontak i {
  width: 30px;
  stroke: #000;
}
.btn-kontak:hover {
  background: transparent;
}
.btn-kontak:hover .button__text {
  color: transparent;
}
.btn-kontak:hover .button__icon {
  width: 163px;
  transform: translateX(0);
  border-radius: var(--radius-md);
}
.btn-kontak:active .button__icon {
  background-color: #aaee00;
}
.btn-kontak:active {
  border: 2px solid #aaee00;
}

